add Client( ) around player name in TID output

This commit is contained in:
Lion Kortlepel 2020-11-12 02:40:01 +01:00
parent 9ddab14f01
commit 583819070b

View File

@ -113,7 +113,7 @@ void TCPRcv(Client*c){
}
void TCPClient(Client*c){
DebugPrintTIDInternal(c->GetName(), true);
DebugPrintTIDInternal(Sec("Client(") + c->GetName() + Sec(")"), true);
Assert(c);
if(c->GetTCPSock() == -1){
CI->RemoveClient(c);