summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2015-11-25 13:54:48 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2015-11-25 13:55:15 -0500
commite16a39b38529e8a7687f40eb3001f15671307ac9 (patch)
tree6dd8d4e4052f2d78997a0e405378c471fa452d8c
parent8ef83e8f7ebe4b78062fab325636d25ba9cb3a22 (diff)
Revert "height_min/max --> y_min/max"
(due to misread of the code) This reverts commit 798a885807a1e1d6f0e028dbf6dcdb5cc9517106.
-rw-r--r--technic_worldgen/mg.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/technic_worldgen/mg.lua b/technic_worldgen/mg.lua
index 9ebecf3..4025384 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",
- y_min = -31000,
- y_max = -150,
+ height_min = -31000,
+ height_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",
- y_min = -31000,
- y_max = -50,
+ height_min = -31000,
+ height_max = -50,
tmin = 3,
tmax = 6,
threshhold = 0.4,