Server Commands and Remote Commands are now Cancellable.

This commit is contained in:
Matt
2015-07-12 19:54:34 +10:00
committed by md_5
parent a03743b3b4
commit 8f9ff9f6fd
3 changed files with 51 additions and 38 deletions

View File

@@ -0,0 +1,14 @@
--- a/net/minecraft/server/RemoteControlSession.java
+++ b/net/minecraft/server/RemoteControlSession.java
@@ -62,7 +62,10 @@
String s = StatusChallengeUtils.a(this.k, k, i);
try {
- this.a(l, this.b.executeRemoteCommand(s));
+ // CraftBukkit start
+ String result = this.b.executeRemoteCommand(s);
+ if (result != null) this.a(l, result);
+ // CraftBukkit end
} catch (Exception exception) {
this.a(l, "Error executing: " + s + " (" + exception.getMessage() + ")");
}