diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2015-10-23 14:44:36 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2015-10-23 14:44:36 -0400 |
commit | 798a885807a1e1d6f0e028dbf6dcdb5cc9517106 (patch) | |
tree | c4668c3c74f251d4cc00c8443d37154f5575e984 /technic_worldgen/mg.lua | |
parent | 71b13ab0e84bc8babf86360c15c364e0a8c84468 (diff) |
height_min/max --> y_min/max
Diffstat (limited to 'technic_worldgen/mg.lua')
-rw-r--r-- | technic_worldgen/mg.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/technic_worldgen/mg.lua b/technic_worldgen/mg.lua index 4025384..9ebecf3 100644 --- a/technic_worldgen/mg.lua +++ b/technic_worldgen/mg.lua @@ -67,8 +67,8 @@ if technic.config:get_bool("enable_granite_generation") then mg.register_ore_sheet({ name = "technic:granite", wherein = "default:stone", - height_min = -31000, - height_max = -150, + y_min = -31000, + y_max = -150, tmin = 3, tmax = 6, threshhold = 0.4, @@ -80,8 +80,8 @@ if technic.config:get_bool("enable_marble_generation") then mg.register_ore_sheet({ name = "technic:marble", wherein = "default:stone", - height_min = -31000, - height_max = -50, + y_min = -31000, + y_max = -50, tmin = 3, tmax = 6, threshhold = 0.4, |