mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 02:01:44 +01:00
SPIGOT-3717: Fix some RCON commands
This commit is contained in:
parent
45c83860e1
commit
8c37e2ebda
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