diff options
author | Auke Kok <auke-jan.h.kok@intel.com> | 2015-04-23 22:51:27 -0700 |
---|---|---|
committer | Auke Kok <auke-jan.h.kok@intel.com> | 2015-04-23 22:51:27 -0700 |
commit | baf1b9ce6a9238d9669d28bebb5b6b222aad6b97 (patch) | |
tree | 021fca8ee782fbe9075eb85106cbcc42848f80e9 /crops_settings.txt | |
parent | 9e2f05283caa9223af6c069715fe8eeb36f0c496 (diff) |
Configuration - persistent config file
This allows a server admin to tweak the mods growth rate, chance
and required light level. For convenience I've made 3 sets of
"easy", "normal" and "difficult" settings so that it's easy to
understand what the difference is and what good starting values
are.
Diffstat (limited to 'crops_settings.txt')
-rw-r--r-- | crops_settings.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/crops_settings.txt b/crops_settings.txt new file mode 100644 index 0000000..46d8514 --- /dev/null +++ b/crops_settings.txt @@ -0,0 +1,26 @@ + +-- +-- crops_settings.txt +-- +-- These are the default difficulty settings for the crops mod. You can uncomment +-- the "easy" or "difficult" settings if you wish, or come up with your own values. +-- + +--[[ +-- easy -- +crops.chance = 4 +crops.interval = 30 +crops.light = 8 +--]] + +-- normal -- +crops.chance = 8 +crops.interval = 30 +crops.light = 10 + +--[[ +-- difficult -- +crops.chance = 16 +crops.interval = 30 +crops.light = 13 +--]] |