diff options
author | Samu <dj_samu@hotmail.com> | 2019-12-21 15:10:58 +0000 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2019-12-21 18:12:01 +0000 |
commit | 96f8c1354394824d869ded19c6e70f7b224aa61d (patch) | |
tree | 2211c7a1e3fb83038286e096e32d706ee5e25891 /src | |
parent | e54184d18bfe7f67eb9a5f0fd145983f7dbc951e (diff) | |
download | openttd-96f8c1354394824d869ded19c6e70f7b224aa61d.tar.xz |
Fix: Custom sea level default value is now equal to minimum value, not lower
Custom sea level default value was lower than the minimum
Diffstat (limited to 'src')
-rw-r--r-- | src/table/settings.ini | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/table/settings.ini b/src/table/settings.ini index 392b4ef1a..482933e67 100644 --- a/src/table/settings.ini +++ b/src/table/settings.ini @@ -2373,9 +2373,9 @@ base = GameSettings var = game_creation.custom_sea_level type = SLE_UINT8 from = SLV_149 -def = 1 -min = 2 -max = 90 +def = CUSTOM_SEA_LEVEL_MIN_PERCENTAGE +min = CUSTOM_SEA_LEVEL_MIN_PERCENTAGE +max = CUSTOM_SEA_LEVEL_MAX_PERCENTAGE cat = SC_BASIC [SDT_VAR] |