Change: improve some of the console messages related to networking (make them more uniform) and convert to fmt

This commit is contained in:
rubidium42
2021-06-12 21:31:57 +02:00
committed by rubidium42
parent b280a3a0ed
commit d9c1d18f2b
3 changed files with 23 additions and 23 deletions

View File

@@ -265,7 +265,7 @@ void NetworkTextMessage(NetworkAction action, TextColour colour, bool self_send,
GetString(msg_ptr, strid, lastof(message));
Debug(desync, 1, "msg: {:08x}; {:02x}; {}", _date, _date_fract, message);
IConsolePrintF(colour, "%s", message);
IConsolePrint(colour, message);
NetworkAddChatMessage((TextColour)colour, _settings_client.gui.network_chat_timeout, message);
}