Error
ferdl9999 opened this issue ยท 1 comments
Please fix this error! http://pastebin.com/2zP0efMs
You can try a quick fix untill UUID is fixed, here:
in the package org.melonbrew.fe.listeners, in the class FePlayerListener, change the method:
@EventHandler(priority = EventPriority.LOWEST)
public void onPlayerLogin(PlayerLoginEvent event){
plugin.getAPI().createAccount(event.getPlayer().getName());
}
to:
@EventHandler(priority = EventPriority.LOWEST)
public void onPlayerLogin(PlayerLoginEvent event){
plugin.getAPI().createAccount(event.getPlayer().getDisplayName());
}