Highlight broadcasts in console as well

This commit is contained in:
def 2014-12-22 18:07:22 +01:00
parent 8c43fcde8b
commit 66a4d5b566

View file

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