(String[] info)
| 620 | } |
| 621 | |
| 622 | private void setSideMessage(String[] info) throws Exception |
| 623 | { |
| 624 | int team = Integer.parseInt(info[1]); |
| 625 | int playerID = Integer.parseInt(info[2]); |
| 626 | |
| 627 | Player player = this.getPlayer(playerID); |
| 628 | |
| 629 | player.setTeam(team); |
| 630 | ((PreGameScreen)graphwar.getUI().getScreen(Constants.PRE_GAME_SCREEN)).updatePlayer(player); |
| 631 | } |
| 632 | |
| 633 | private void addPlayerMessage(String[] info) throws Exception |
| 634 | { |
no test coverage detected