Fix server message printing bug

There was a space missing
This commit is contained in:
Lion Kortlepel
2021-11-27 02:31:21 +01:00
parent fd7bea0f36
commit 6fd54f7907

View File

@@ -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 << "";
}