mirror of
https://github.com/SantaSpeen/BeamMP-Server.git
synced 2026-06-18 22:10:52 +00:00
Fix server message printing bug
There was a space missing
This commit is contained in:
+1
-1
@@ -150,7 +150,7 @@ void LogChatMessage(const std::string& name, int id, const std::string& msg) {
|
|||||||
ss << ThreadName();
|
ss << ThreadName();
|
||||||
ss << "[CHAT] ";
|
ss << "[CHAT] ";
|
||||||
if (id != -1) {
|
if (id != -1) {
|
||||||
ss << "(" << id << ") <" << name << ">";
|
ss << "(" << id << ") <" << name << "> ";
|
||||||
} else {
|
} else {
|
||||||
ss << name << "";
|
ss << name << "";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user