(int playerID, ClientConnection client)
| 63 | } |
| 64 | |
| 65 | protected boolean removePlayer(int playerID, ClientConnection client) |
| 66 | { |
| 67 | boolean v = super.removePlayer(playerID, client); |
| 68 | |
| 69 | globalClient.sendRoomStatus(this.gameMode, this.players.size()); |
| 70 | |
| 71 | return v; |
| 72 | } |
| 73 | |
| 74 | protected void sendModeMessage() |
| 75 | { |
nothing calls this directly
no test coverage detected