1
0
mirror of https://github.com/LOOHP/Limbo.git synced 2026-06-07 13:31:43 +00:00

fix whitespace

This commit is contained in:
Tad Hunt
2022-09-30 08:27:14 -06:00
parent 4d1fade2e7
commit 23dfbd0df2
@@ -376,7 +376,7 @@ public class ClientConnection extends Thread {
Limbo.getInstance().getConsole().sendMessage(String.valueOf(i) + ": " + data[i]);
}
switch(state) {
switch (state) {
default:
Limbo.getInstance().getConsole().sendMessage(String.valueOf(i) + ": ignore data: State: " + String.valueOf(state));
break;
@@ -385,7 +385,7 @@ public class ClientConnection extends Thread {
state = 1;
break;
case 1:
if(data[i].startsWith("^Floodgate^")) {
if (data[i].startsWith("^Floodgate^")) {
floodgate = data[i];
state = 2;
break;