diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-10-16 11:15:59 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-10-16 11:15:59 +0100 |
commit | 922b782dc948200eaf37d20b1d9e2bef2e2d93ca (patch) | |
tree | ae1b22a5edc2dc0360a05b624c5f7c315625db38 | |
parent | 96a45ccc66ce69ac052145499d945670bb145bfd (diff) |
height_min/max bug fixed for sandy node
-rw-r--r-- | sealife.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sealife.lua b/sealife.lua index b155bf4..7e24657 100644 --- a/sealife.lua +++ b/sealife.lua @@ -134,8 +134,8 @@ minetest.register_ore({ clust_scarcity = 10*10*10, clust_num_ores = 24, clust_size = 4, - height_max = -14, - height_min = -100, + y_max = -14, + y_min = -100, }) -- randomly generate coral or seaweed and have seaweed grow up to 10 high |