Fix for faction creation sometimes causing an NPE; hopefully a fix for the cause of the null value as well, from an ID clash in the entity collection of factions

Fix for disband command causing an NPE if run from the console
Additionally, disband command use is now logged
This commit is contained in:
Brettflan
2011-10-13 04:10:29 -05:00
parent cace4aa955
commit 4ec086e4fa
4 changed files with 18 additions and 5 deletions

View File

@ -41,7 +41,7 @@ public class SpoutFeatures
{
listenersHooked = true;
mainListener = new SpoutMainListener();
P.p.getServer().getPluginManager().registerEvent(Event.Type.CUSTOM_EVENT, mainListener, Event.Priority.Normal, P.p);
P.p.registerEvent(Event.Type.CUSTOM_EVENT, mainListener, Event.Priority.Normal);
}
}
else