mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-02 07:45:26 +00:00
Fix server message printing bug
There was a space missing
This commit is contained in:
parent
fd7bea0f36
commit
6fd54f7907
@ -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 << "";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user