1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-09-03 03:32:42 +02:00

Fix NPE in AlternativeCommandsHandler on shutdown

This commit is contained in:
snowleo
2011-11-25 00:22:57 +01:00
parent 32e43bf167
commit 31b9e792bd

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();
}