diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2014-11-21 20:26:04 +0000 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2014-11-21 20:26:04 +0000 |
commit | c20f259f4b00ac69be37f79f8500e53db395e7f5 (patch) | |
tree | 1ac67f0a63822323b9df224fc731ab3aebb677a9 /extra.lua | |
parent | c4d4e229f7d63959508e4505099a7fca5ca87534 (diff) |
Updated: flowers and code tidy
Diffstat (limited to 'extra.lua')
-rw-r--r-- | extra.lua | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -287,9 +287,8 @@ minetest.register_on_generated(function(minp, maxp, seed) for key, pos in pairs(coal_nodes) do local bpos = { x=pos.x, y=pos.y + 1, z=pos.z } - nod = minetest.get_node(bpos).name - if nod == "air" then + if minetest.get_node(bpos).name == "air" then if bpos.y > -3000 and bpos.y < -2000 then minetest.add_node(bpos, {name = "ethereal:illumishroom3"}) elseif bpos.y > -2000 and bpos.y < -1000 then |