CHATA now doesn't send chatmsg to sender gui

This commit is contained in:
Sebastian Lenzlinger 2022-04-18 15:01:03 +02:00
parent 5e50905f81
commit 8926eaa8f8

View File

@ -216,6 +216,9 @@ public class ClientHandler implements Runnable {
*/ */
public void broadcastChatMessageToAll(String msg) { public void broadcastChatMessageToAll(String msg) {
for (ClientHandler client : connectedClients) { for (ClientHandler client : connectedClients) {
if(client.getClientUserName().equals(this.getClientUserName())){
continue;
}
client.sendMsgToClient(Protocol.printToClientChat + "$" + clientUserName + ": " + msg); client.sendMsgToClient(Protocol.printToClientChat + "$" + clientUserName + ": " + msg);
} }
} }