Skip to content

Instantly share code, notes, and snippets.

@superckl
Last active August 29, 2015 13:58
Show Gist options
  • Save superckl/9961771 to your computer and use it in GitHub Desktop.
Save superckl/9961771 to your computer and use it in GitHub Desktop.
Overriding the op command
final Field f = this.getServer().getClass().getDeclaredField("commandMap");
f.setAccessible(true);
this.bukkitCommandMap = (CommandMap) f.get(this.getServer());
((Map<String, Command>)this.bukkitCommandMap.getClass().getDeclaredField("knownCommands")).put("op", new OpOverrideCommand());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment