This commit is contained in:
Johannes Schmelz 2024-12-10 14:10:17 +01:00
parent 18300987a4
commit 40c550cc4d

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,6 +518,8 @@ 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);
}