org.bukkit.event.server.RemoteServerCommandEvent Java Examples
The following examples show how to use
org.bukkit.event.server.RemoteServerCommandEvent.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CommandEventHandler.java From GriefDefender with MIT License | 4 votes |
@EventHandler(priority = EventPriority.LOWEST) public void onRemoteServerCommand(RemoteServerCommandEvent event) { // CauseTracker.getInstance().getCauseStack().add(event.getSender()); }
Example #2
Source File: BukkitPlatformListener.java From LuckPerms with MIT License | 4 votes |
@EventHandler public void onRemoteServerCommand(RemoteServerCommandEvent e) { handleCommand(e.getSender(), e.getCommand().toLowerCase(), e); }
Example #3
Source File: GroupSynchronizationManager.java From DiscordSRV with GNU General Public License v3.0 | 4 votes |
@EventHandler(ignoreCancelled = true, priority = EventPriority.MONITOR) public void onRemoteServerCommand(RemoteServerCommandEvent event) { checkCommand(event.getCommand()); }