(svn r14764) -Codechange: make the '***' chat messages like "Game paused (not enough players)" fully translateable.

This commit is contained in:
rubidium
2008-12-29 10:37:53 +00:00
parent 703831ec6d
commit a25e3f8d70
10 changed files with 116 additions and 134 deletions

View File

@@ -257,7 +257,7 @@ static void SendChat(const char *buf, DestType type, int dest)
{
if (StrEmpty(buf)) return;
if (!_network_server) {
SEND_COMMAND(PACKET_CLIENT_CHAT)((NetworkAction)(NETWORK_ACTION_CHAT + type), type, dest, buf);
SEND_COMMAND(PACKET_CLIENT_CHAT)((NetworkAction)(NETWORK_ACTION_CHAT + type), type, dest, buf, 0);
} else {
NetworkServerSendChat((NetworkAction)(NETWORK_ACTION_CHAT + type), type, dest, buf, CLIENT_ID_SERVER);
}