Compare commits

..

No commits in common. "eb54fb1d14c27829ec2ccd43d115b35541464f86" and "18300987a4f8f73e76f661273a01e5bb2c3ab613" have entirely different histories.

2 changed files with 3 additions and 10 deletions

View File

@ -327,11 +327,6 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
board.add(new Hotel(property.getId()));
} else {
for(int i = 0; i < 4; i++) {
board.remove(board.getHouse(msg.getId(), i+1));
}
board.add(new House( property.getHouses(), property.getId()));
}
} else {

View File

@ -484,9 +484,9 @@ public class ServerGameLogic implements ClientInterpreter {
// buildHouses(p1, Set.of(1, 3));
// Player 2 builds houses on the Red set
// buildHouses(p2, Set.of(21, 23, 24));
// buildHouses(p2, Set.of(23, 24));
// // buildHouses(p2, Set.of( 24));
buildHouses(p2, Set.of(21, 23, 24));
buildHouses(p2, Set.of(23, 24));
buildHouses(p2, Set.of( 24));
// Set player balances
p1.setAccountBalance(12325);
@ -518,8 +518,6 @@ public class ServerGameLogic implements ClientInterpreter {
field.setOwner(player);
player.addProperty(propertyId);
}
updateAllPlayers();
LOGGER.log(Level.DEBUG, "Properties assigned to player {0}: {1}", player.getName(), properties);
}