diff options
author | Pavel Stupnikov <dp@dpointer.org> | 2020-12-16 23:56:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 21:56:32 +0100 |
commit | b2895dfcd056798bb82957a55394a941c61376f5 (patch) | |
tree | 2fc6ba5bc8f39720c1434f0197729ad6307625b7 /src/table | |
parent | d989fb516bf271bc59c97d7580b1b66d849a1c1b (diff) | |
download | openttd-b2895dfcd056798bb82957a55394a941c61376f5.tar.xz |
Change: extend the allowed range for max loan setting (#8386)
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/settings.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/settings.ini b/src/table/settings.ini index b578d462b..cca6a99bf 100644 --- a/src/table/settings.ini +++ b/src/table/settings.ini @@ -148,8 +148,8 @@ type = SLE_UINT32 from = SLV_97 guiflags = SGF_NEWGAME_ONLY | SGF_SCENEDIT_TOO | SGF_CURRENCY def = 300000 -min = 100000 -max = 500000 +min = 0 +max = 2000000000 interval = 50000 str = STR_CONFIG_SETTING_MAXIMUM_INITIAL_LOAN strhelp = STR_CONFIG_SETTING_MAXIMUM_INITIAL_LOAN_HELPTEXT |