From b576bd6a3218e76ca1c8f0fc0639cd4712dbffa4 Mon Sep 17 00:00:00 2001 From: "Nut.andor" Date: Sat, 14 May 2022 10:59:11 +0200 Subject: [PATCH] map max size enlarged, other it crashes when monsters at Y>33 look for you --- .../com/gpl/rpg/AndorsTrail_beta1/controller/Constants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AndorsTrail/src/com/gpl/rpg/AndorsTrail_beta1/controller/Constants.java b/AndorsTrail/src/com/gpl/rpg/AndorsTrail_beta1/controller/Constants.java index 6d5720227..3a03d1892 100644 --- a/AndorsTrail/src/com/gpl/rpg/AndorsTrail_beta1/controller/Constants.java +++ b/AndorsTrail/src/com/gpl/rpg/AndorsTrail_beta1/controller/Constants.java @@ -23,8 +23,8 @@ public final class Constants { public static final long MINIMUM_INPUT_INTERVAL_STD = 200; //TODO restore final modifier before release public static long MINIMUM_INPUT_INTERVAL = AndorsTrailApplication.DEVELOPMENT_FASTSPEED ? MINIMUM_INPUT_INTERVAL_FAST : MINIMUM_INPUT_INTERVAL_STD; - public static final int MAX_MAP_WIDTH = 33; - public static final int MAX_MAP_HEIGHT = 33; + public static final int MAX_MAP_WIDTH = 46; + public static final int MAX_MAP_HEIGHT = 46; public static final int MONSTER_MOVEMENT_TURN_DURATION_MS = 1200; public static final int MONSTER_IMMOBILE_MOVE_COST = 999;