mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 03:43:40 +01:00
SPIGOT-3717: Fix some RCON commands
By: md_5 <git@md-5.net>
This commit is contained in:
parent
02b4af5356
commit
8560cbd06a
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@
|
|||
+ if (listener instanceof DedicatedServer) {
|
||||
+ sender = ((DedicatedServer) listener).console;
|
||||
+ } else if (listener instanceof RemoteControlCommandListener) {
|
||||
+ sender = ((DedicatedServer) listener).remoteConsole;
|
||||
+ sender = ((RemoteControlCommandListener) listener).C_().remoteConsole;
|
||||
+ } else if (listener instanceof CommandBlockListenerAbstract) {
|
||||
+ sender = ((CommandBlockListenerAbstract) listener).sender;
|
||||
+ } else if (listener instanceof CustomFunctionData.CustomFunctionListener) {
|
||||
|
|
Loading…
Reference in a new issue