diff options
author | root <root@linux-forks.de> | 2018-11-14 12:45:10 +0100 |
---|---|---|
committer | root <root@linux-forks.de> | 2018-11-14 12:45:10 +0100 |
commit | 070c5dd08e9652cd540542b860d5a5cce1f8c7d4 (patch) | |
tree | 55b8404d46f195a38bb34a470290a9cacd4b75bd /mapgen.lua | |
parent | 31fe2ff374e72fb8ea44d50cd82d6fc8b9be5463 (diff) | |
parent | b29634b3632aebe6c21d035884ed454cfd7ce77a (diff) |
Diffstat (limited to 'mapgen.lua')
-rw-r--r-- | mapgen.lua | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -736,6 +736,8 @@ for _, row in pairs(list) do end
+local random = math.random
+
-- Generate Illumishroom in caves next to coal
minetest.register_on_generated(function(minp, maxp)
@@ -749,9 +751,9 @@ minetest.register_on_generated(function(minp, maxp) for n = 1, #coal do
- bpos = {x = coal[n].x, y = coal[n].y + 1, z = coal[n].z }
+ if random(1, 2) == 1 then
- if math.random(1, 2) == 1 then
+ bpos = {x = coal[n].x, y = coal[n].y + 1, z = coal[n].z }
if bpos.y > -3000 and bpos.y < -2000 then
minetest.swap_node(bpos, {name = "ethereal:illumishroom3"})
|