Fix another NPE in AlternativeCommandsHandler

This commit is contained in:
snowleo 2011-11-25 13:55:09 +01:00
parent 7afbad3218
commit 223028f306

View File

@ -42,7 +42,11 @@ public class AlternativeCommandsHandler
PluginCommand reg = ess.getServer().getPluginCommand(pluginName + ":" + pc.getName().toLowerCase(Locale.ENGLISH));
if (reg == null)
{
reg = Bukkit.getServer().getPluginCommand(pc.getName().toLowerCase(Locale.ENGLISH));
reg = ess.getServer().getPluginCommand(pc.getName().toLowerCase(Locale.ENGLISH));
}
if (reg == null)
{
continue;
}
for (String label : labels)
{