1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-19 13:01:20 +02:00

Fix NPE in AlternativeCommandsHandler on shutdown

This commit is contained in:
snowleo
2011-11-25 00:22:57 +01:00
parent ec36ed54cb
commit 5aceb01643

View File

@@ -78,7 +78,7 @@ public class AlternativeCommandsHandler
while (pcIterator.hasNext())
{
final PluginCommand pc = pcIterator.next();
if (pc.getPlugin().equals(plugin))
if (pc.getPlugin() == null || pc.getPlugin().equals(plugin))
{
pcIterator.remove();
}