| 529 | } |
| 530 | |
| 531 | static void BroadcastText(GameEntry *game, const char *fmt, ...) throw() |
| 532 | { |
| 533 | char *moo; |
| 534 | va_list ap; |
| 535 | |
| 536 | va_start(ap,fmt); |
| 537 | vasprintf(&moo, fmt, ap); |
| 538 | va_end(ap); |
| 539 | |
| 540 | SendToAll(game, 0x90,(uint8 *)moo,strlen(moo)); |
| 541 | free(moo); |
| 542 | } |
| 543 | |
| 544 | static void KillClient(ClientEntry *client) |
| 545 | { |
no test coverage detected