From 18bb0a3c64a0081f073896f35a756cd39e410670 Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Wed, 19 May 2021 11:28:33 +0200 Subject: [PATCH] Raise water height limit Since the water height is not limited to the bits it was stored in before, it can be increased much higher now. This commits sets it to same max height as for surfaces. --- src/openrct2/world/Map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/world/Map.h b/src/openrct2/world/Map.h index 412756356c..5202375f90 100644 --- a/src/openrct2/world/Map.h +++ b/src/openrct2/world/Map.h @@ -20,7 +20,7 @@ #define MINIMUM_LAND_HEIGHT 2 #define MAXIMUM_LAND_HEIGHT 142 #define MINIMUM_WATER_HEIGHT 2 -#define MAXIMUM_WATER_HEIGHT 58 +#define MAXIMUM_WATER_HEIGHT 142 #define MINIMUM_MAP_SIZE_TECHNICAL 15 #define MAXIMUM_MAP_SIZE_TECHNICAL 1001