summaryrefslogtreecommitdiffstats
path: root/nms-patches/RemoteControlSession.patch
blob: 4c1fcfd031d4e5a1742dbdbfe620292f2f227b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
--- a/net/minecraft/server/RemoteControlSession.java
+++ b/net/minecraft/server/RemoteControlSession.java
@@ -32,8 +32,8 @@
     }
 
     public void run() {
-        while (true) {
-            try {
+        try { // CraftBukkit // PAIL: FF issue
+            while (true) { // CraftBukkit // PAIL: FF issue
                 if (!this.a) {
                     break;
                 }
@@ -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() + ")");
                             }
@@ -90,20 +93,20 @@
                         this.a(l, String.format("Unknown request %s", new Object[] { Integer.toHexString(i1)}));
                         continue;
                     }
-                }
+                } }
             } catch (SocketTimeoutException sockettimeoutexception) {
-                break;
+                // break; // CraftBukkit // PAIL: FF issue
             } catch (IOException ioexception) {
-                break;
+                // break; // CraftBukkit // PAIL: FF issue
             } catch (Exception exception1) {
                 RemoteControlSession.h.error("Exception whilst parsing RCON input", exception1);
-                break;
+                // break; // CraftBukkit // PAIL: FF issue
             } finally {
                 this.g();
             }
 
             return;
-        }
+        // } // CraftBukkit // PAIL: FF issue
 
     }