(ClientConnection client)
| 79 | } |
| 80 | |
| 81 | public void removeClient(ClientConnection client) |
| 82 | { |
| 83 | super.removeClient(client); |
| 84 | |
| 85 | if(this.clients.size() == 0) |
| 86 | { |
| 87 | if(this.gameState == Constants.GAME) |
| 88 | { |
| 89 | this.goPreGame(); |
| 90 | globalClient.recreateRoom(); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | globalClient.sendRoomStatus(this.gameMode, this.players.size()); |
| 95 | } |
| 96 | |
| 97 | protected void startGame() |
| 98 | { |
nothing calls this directly
no test coverage detected