This commit is contained in:
2026-05-19 12:36:49 -04:00
parent 9fa8d82217
commit a221d8646a
2 changed files with 19 additions and 2 deletions
@@ -21,8 +21,8 @@ final class DefaultCommandApi implements CommandApi
@Override
public void unregister(Command command)
{
plugin.getServer().getCommandMap().getKnownCommands().remove(command.getName());
command.getAliases().forEach(alias -> plugin.getServer().getCommandMap().getKnownCommands().remove(alias));
plugin.getServer().getCommandMap().getKnownCommands().remove(command.getName().toLowerCase());
command.getAliases().forEach(alias -> plugin.getServer().getCommandMap().getKnownCommands().remove(alias.toLowerCase()));
command.unregister(plugin.getServer().getCommandMap());
}
}