From 775e46788c75f7adc2622e54403e7d0be7407b9b Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Fri, 6 Nov 2020 01:40:08 +0100 Subject: [PATCH] fix SendAll again --- src/Network/InitClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/InitClient.cpp b/src/Network/InitClient.cpp index e69616c..9a3fa20 100644 --- a/src/Network/InitClient.cpp +++ b/src/Network/InitClient.cpp @@ -32,7 +32,7 @@ void Respond(Client*c, const std::string& MSG, bool Rel){ }else UDPSend(c,MSG); } void SendToAll(Client*c, const std::string& Data, bool Self, bool Rel){ - if (Self) { + if (!Self) { Assert(c); } char C = Data.at(0);