From 6fd54f7907c90a41bdd8675d8fae93b7c3654b8f Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Sat, 27 Nov 2021 02:31:21 +0100 Subject: [PATCH] Fix server message printing bug There was a space missing --- src/Common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common.cpp b/src/Common.cpp index acf3b21..b5db30d 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -150,7 +150,7 @@ void LogChatMessage(const std::string& name, int id, const std::string& msg) { ss << ThreadName(); ss << "[CHAT] "; if (id != -1) { - ss << "(" << id << ") <" << name << ">"; + ss << "(" << id << ") <" << name << "> "; } else { ss << name << ""; }