| 2048 | SendMsg(&msg, NMFGuaranteed); |
| 2049 | } |
| 2050 | |
| 2051 | void NetworkClient::Chat(int channel, RString text) |
| 2052 | { |
| 2053 | ChatMessage msg(channel, GetLocalPlayerName(), text); |
| 2054 | SendMsg(&msg, NMFGuaranteed | GetChatPriority()); |
| 2055 | } |
| 2056 | |
| 2057 | void NetworkClient::Chat(int channel, AIUnit* sender, RefArray<NetworkObject>& units, RString text) |
no test coverage detected