ohowe1 / SpectatorModeRewrite

Minecraft plugin that allows players to go into spectator mode but enables admins to prevent features of it.
https://www.spigotmc.org/resources/smp-spectator-mode-1-16-support.77267/
MIT License
17 stars 10 forks source link

Fix command aliases #32

Closed pop4959 closed 3 years ago

pop4959 commented 3 years ago

I don't actually use this plugin, but I noticed that this plugin is checking commands by label rather than by command name, and it was bothering me. As a result, if a server has any other plugin installed besides SpectatorMode which use commands like /s and /speed, and they are registered first, it becomes impossible to use the command.

By checking by command name, the exact label doesn't matter anymore, so for example you can run the aliases /spectatormode:s or /spectatormode:speed and the command will still run as it is intended to in that case.

ohowe1 commented 3 years ago

Thanks