(String[] info)
| 701 | } |
| 702 | |
| 703 | private void setModeMessage(String[] info) throws Exception |
| 704 | { |
| 705 | int mode = Integer.parseInt(info[1]); |
| 706 | |
| 707 | this.gameMode = mode; |
| 708 | |
| 709 | ((PreGameScreen)graphwar.getUI().getScreen(Constants.PRE_GAME_SCREEN)).setMode(mode); |
| 710 | |
| 711 | graphwar.getGlobalClient().sendRoomStatus(); |
| 712 | } |
| 713 | |
| 714 | private void setReadyMessage(String[] info) throws Exception |
| 715 | { |
no test coverage detected