Tells others that we are cheating
| 324 | |
| 325 | // Tells others that we are cheating |
| 326 | void SendCheaterAttemptText() { |
| 327 | char str[255]; |
| 328 | snprintf(str, sizeof(str), TXT_CHEATATTEMPT, Players[Player_num].callsign); |
| 329 | |
| 330 | if (Netgame.local_role == LR_SERVER) |
| 331 | MultiSendMessageFromServer(GR_RGB(255, 0, 0), str); |
| 332 | else |
| 333 | MultiSendMessageToServer(0, str); |
| 334 | } |
| 335 | |
| 336 | void DemoCheats(int key) { |
| 337 | static int snd_cheat = -1; |
no test coverage detected