| 628 | } |
| 629 | |
| 630 | void CGameContext::SendChatTeam(int Team, const char *pText) const |
| 631 | { |
| 632 | for(int i = 0; i < MAX_CLIENTS; i++) |
| 633 | if(m_apPlayers[i] != nullptr && GetDDRaceTeam(i) == Team) |
| 634 | SendChatTarget(i, pText); |
| 635 | } |
| 636 | |
| 637 | void CGameContext::SendChat(int ChatterClientId, int Team, const char *pText, int SpamProtectionClientId, int VersionFlags) |
| 638 | { |
no outgoing calls
no test coverage detected