mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Fix NPE in AlternativeCommandsHandler on shutdown
This commit is contained in:
parent
32e43bf167
commit
31b9e792bd
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue