Fix: Bug #7721 (h109): patch by ST2 included to make configuration options work correctly

This commit is contained in:
jottyfan
2015-07-12 14:48:16 +02:00
parent 4e9dd549ad
commit 9a917be2e0
2 changed files with 17 additions and 17 deletions

View File

@@ -98,32 +98,32 @@ function BeeRewardInfo::GetSettings()
GSInfo.AddSetting({name="subsidy_factor",
description="Factor to be multiplied with cargo amount as reward",
min_value=0,
max_value=4,
easy_value=3,
medium_value=2,
hard_value=1,
max_value=4000,
easy_value=3000,
medium_value=2000,
hard_value=1000,
custom_value=0,
step_size=0.5,
step_size=1,
flags=GSInfo.CONFIG_INGAME});
GSInfo.AddSetting({name="rewardfactor_town",
description="Extra factor to be multiplied with reward for towns",
min_value=0,
max_value=2,
easy_value=2,
medium_value=1,
max_value=200,
easy_value=200,
medium_value=100,
hard_value=0,
custom_value=0,
step_size=0.1,
step_size=1,
flags=GSInfo.CONFIG_INGAME});
GSInfo.AddSetting({name="rewardfactor_ind",
description="Extra factor to be multiplied with reward for industries",
min_value=0,
max_value=2,
easy_value=2,
medium_value=1,
max_value=200,
easy_value=200,
medium_value=100,
hard_value=0,
custom_value=0,
step_size=0.1,
step_size=1,
flags=GSInfo.CONFIG_INGAME});
}