| 139 | COMMAND(muteplayer, "i"); |
| 140 | |
| 141 | void listmuted() |
| 142 | { |
| 143 | string pl; |
| 144 | pl[0] = '\0'; |
| 145 | loopv(players) if(players[i] && players[i]->muted) concatformatstring(pl, ", %s", colorname(players[i])); |
| 146 | if(*pl) conoutf("muted players: %s", pl + 2); |
| 147 | else conoutf("no players are muted"); |
| 148 | } |
| 149 | COMMAND(listmuted, ""); |
| 150 | |
| 151 | void clearmuted(char *cn) |
nothing calls this directly
no test coverage detected