| 116 | COMMAND(ignore, "i"); |
| 117 | |
| 118 | void listignored() |
| 119 | { |
| 120 | string pl; |
| 121 | pl[0] = '\0'; |
| 122 | loopv(players) if(players[i] && players[i]->ignored) concatformatstring(pl, ", %s", colorname(players[i])); |
| 123 | if(*pl) conoutf("ignored players: %s", pl + 2); |
| 124 | else conoutf("no players are ignored"); |
| 125 | } |
| 126 | COMMAND(listignored, ""); |
| 127 | |
| 128 | void clearignored(int *cn) |
nothing calls this directly
no test coverage detected