diff options
author | Marcin <beyondlimits@10g.pl> | 2017-01-08 20:54:17 +0100 |
---|---|---|
committer | Auke Kok <sofar+github@foo-projects.org> | 2017-01-22 19:28:36 -0800 |
commit | a4d6418c83f31940dc1fd8ead38edc9b53fda92a (patch) | |
tree | 58e5c40e77a7f750cea7ac2b459b3f424c62a19e /_config.txt | |
parent | 58a337ccd6e457a5bd632ff59495480525259b49 (diff) |
Do not pollute global namespace
Diffstat (limited to '_config.txt')
-rw-r--r-- | _config.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/_config.txt b/_config.txt index e716b2e..42e7b37 100644 --- a/_config.txt +++ b/_config.txt @@ -7,21 +7,21 @@ ------------------------------------------------------------------------------ -- Chunk sizes for ore generation (bigger = ore deposits are more scattered around) -moreores_tin_chunk_size = 7 -moreores_silver_chunk_size = 11 -moreores_mithril_chunk_size = 11 +moreores.tin_chunk_size = 7 +moreores.silver_chunk_size = 11 +moreores.mithril_chunk_size = 11 -- Amount of ore per chunk (higher = bigger ore deposits) -moreores_tin_ore_per_chunk = 3 -moreores_silver_ore_per_chunk = 4 -moreores_mithril_ore_per_chunk = 1 +moreores.tin_ore_per_chunk = 3 +moreores.silver_ore_per_chunk = 4 +moreores.mithril_ore_per_chunk = 1 -- Minimal depths of ore generation (Y coordinate, 0 being sea level by default) -moreores_tin_min_depth = -31000 -moreores_silver_min_depth = -31000 -moreores_mithril_min_depth = -31000 +moreores.tin_min_depth = -31000 +moreores.silver_min_depth = -31000 +moreores.mithril_min_depth = -31000 -- Maximal depths of ore generation (Y coordinate, 0 being sea level by default) -moreores_tin_max_depth = 8 -moreores_silver_max_depth = -2 -moreores_mithril_max_depth = -512 +moreores.tin_max_depth = 8 +moreores.silver_max_depth = -2 +moreores.mithril_max_depth = -512 |