Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tadhunt committed Sep 30, 2022
1 parent 4d1fade commit 23dfbd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/loohp/limbo/network/ClientConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public void run() {
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;
Expand All @@ -385,7 +385,7 @@ public void run() {
state = 1;
break;
case 1:
if(data[i].startsWith("^Floodgate^")) {
if (data[i].startsWith("^Floodgate^")) {
floodgate = data[i];
state = 2;
break;
Expand Down

0 comments on commit 23dfbd0

Please sign in to comment.