Removed input mistake, removed print

This commit is contained in:
lieght
2026-01-11 10:50:53 +01:00
parent 94d85bf78d
commit 5caf6900d1
2 changed files with 1 additions and 2 deletions

View File

@@ -250,7 +250,7 @@ public class Server implements GameServer<TurnBasedGame, NettyClient, Long> {
userNames.remove(first); userNames.remove(first);
userNames.remove(second); userNames.remove(second);
startGame(key, null, getUser(userLeft), getUser(userRight)); startGame(key, getUser(userLeft), getUser(userRight));
} }
} }
} }

View File

@@ -56,7 +56,6 @@ public class NettyClient implements Client<OnlineTurnBasedGame, ServerPlayer> {
@Override @Override
public void send(String message) { public void send(String message) {
IO.println(message);
ctx.channel().writeAndFlush(message + "\r\n"); ctx.channel().writeAndFlush(message + "\r\n");
} }