-
-
Notifications
You must be signed in to change notification settings - Fork 74
Unable to forcefully unregister commands in bukkit namespace #210
Copy link
Copy link
Closed
Labels
bugSomething isn't workingSomething isn't workingimplemented for next releaseThis has been implemented in the current dev build for the next public releaseThis has been implemented in the current dev build for the next public release
Description
CommandAPI version: 5.12
Server version: Paper version git-Paper-762 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)
What I did:
CommandAPI running as plugin on the server.
class Main extends JavaPlugin {
@Override
public void onEnable() {
CommandAPI.unregister("help", true);
CommandAPI.unregister("me", true);
}
}Actual result:
- "help" command not unregistered, neither was "bukkit:help".
- "me" command was unregistered and so was "minecraft:me"
- No error messages
Relevant console output:
[11:44:07 INFO]: [CommandAPI] Loading CommandAPI v5.12
[11:44:07 INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[11:44:07 INFO]: [CommandAPI] Enabling CommandAPI v5.12
[11:44:07 INFO]: [CommandAPI] Linked 27 Bukkit permissions to commands
[11:44:07 INFO]: [CommandAPI] Reloading datapacks...
[11:44:08 INFO]: [CommandAPI] Finished reloading datapacks
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingimplemented for next releaseThis has been implemented in the current dev build for the next public releaseThis has been implemented in the current dev build for the next public release