mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Highlight broadcasts in console as well
This commit is contained in:
parent
8c43fcde8b
commit
66a4d5b566
|
@ -56,7 +56,7 @@ void CBroadcast::OnMessage(int MsgType, void *pRawMsg)
|
|||
{
|
||||
aBuf[ii] = '\0';
|
||||
ii = 0;
|
||||
m_pClient->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "broadcast", aBuf);
|
||||
m_pClient->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "broadcast", aBuf, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -65,7 +65,7 @@ void CBroadcast::OnMessage(int MsgType, void *pRawMsg)
|
|||
}
|
||||
}
|
||||
aBuf[ii] = '\0';
|
||||
m_pClient->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "broadcast", aBuf);
|
||||
m_pClient->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "broadcast", aBuf, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue