From 3c21165efbad3ae22e16de77a89f5436ac49d3cb Mon Sep 17 00:00:00 2001 From: Johannes Schmelz Date: Tue, 19 Nov 2024 19:09:37 +0100 Subject: [PATCH] adjusted config params --- .../model/src/main/java/pp/monopoly/MonopolyConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projekte/monopoly/model/src/main/java/pp/monopoly/MonopolyConfig.java b/Projekte/monopoly/model/src/main/java/pp/monopoly/MonopolyConfig.java index 3a5da01..41f14e9 100644 --- a/Projekte/monopoly/model/src/main/java/pp/monopoly/MonopolyConfig.java +++ b/Projekte/monopoly/model/src/main/java/pp/monopoly/MonopolyConfig.java @@ -34,13 +34,13 @@ public class MonopolyConfig extends Config { * The width of the game map in terms of grid units. */ @Property("map.width") - private int mapWidth = 10; + private int mapWidth = 11; /** * The height of the game map in terms of grid units. */ @Property("map.height") - private int mapHeight = 10; + private int mapHeight = 11; /** * Creates an instance of {@code MonopolyConfig} with default settings.