| 280 | } |
| 281 | |
| 282 | const char* getTeamColor(bz_eTeamType testteam) { |
| 283 | if (testteam == eRedTeam) { |
| 284 | return "RED"; |
| 285 | } |
| 286 | if (testteam == eGreenTeam) { |
| 287 | return "GREEN"; |
| 288 | } |
| 289 | if (testteam == eBlueTeam) { |
| 290 | return "BLUE"; |
| 291 | } |
| 292 | if (testteam == ePurpleTeam) { |
| 293 | return "PURPLE"; |
| 294 | } |
| 295 | if (testteam == eRogueTeam) { |
| 296 | return "ROGUE"; |
| 297 | } |
| 298 | |
| 299 | return " "; |
| 300 | } |
| 301 | |
| 302 | bool onePlayer() { |
| 303 | int numPlayers = |
no outgoing calls
no test coverage detected