Skip to content

Commit

Permalink
0.12.4 | fix send command to proxies not executing on sender proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
ham1255 committed May 15, 2024
1 parent 2485150 commit 995c904
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ public List<String> proxiesIds() {

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));
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=com.imaginarycode.minecraft
version=0.12.3
version=0.12.4

0 comments on commit 995c904

Please sign in to comment.