mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-22 04:08:02 +00:00
0.12.4 | fix send command to proxies not executing on sender proxy
This commit is contained in:
parent
2485150ddc
commit
995c9045df
@ -88,6 +88,9 @@ public abstract class ProxyDataManager implements Runnable {
|
||||
|
||||
public synchronized void sendCommandTo(String proxyToRun, String command) {
|
||||
if (isClosed()) return;
|
||||
if (proxyToRun.equals("allservers") || proxyToRun.equals(this.proxyId())) {
|
||||
handlePlatformCommandExecution(command);
|
||||
}
|
||||
publishPayload(new RunCommandPayload(this.proxyId, proxyToRun, command));
|
||||
}
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
group=com.imaginarycode.minecraft
|
||||
version=0.12.3
|
||||
version=0.12.4
|
Loading…
Reference in New Issue
Block a user