Prevent removing first two players for online games

This commit is contained in:
drdev
2015-06-13 18:54:12 +00:00
parent 09762eb50c
commit b5f36846a0

View File

@@ -61,7 +61,7 @@ public final class ServerGameLobby extends GameLobby {
@Override
public boolean mayRemove(final int index) {
return true;
return index >= 2;
}
@Override