We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0472e61 commit c76a919Copy full SHA for c76a919
mods/tnt/init.lua
@@ -29,8 +29,20 @@ minetest.after(0, function()
29
end)
30
31
local function rand_pos(center, pos, radius)
32
- pos.x = center.x + math.random(-radius, radius)
33
- pos.z = center.z + math.random(-radius, radius)
+ local def
+ local reg_nodes = minetest.registered_nodes
34
+ local i = 0
35
+ repeat
36
+ -- Give up and use the center if this takes too long
37
+ if i > 4 then
38
+ pos.x, pos.z = center.x, center.z
39
+ break
40
+ end
41
+ pos.x = center.x + math.random(-radius, radius)
42
+ pos.z = center.z + math.random(-radius, radius)
43
+ def = reg_nodes[minetest.get_node(pos).name]
44
+ i = i + 1
45
+ until def and not def.walkable
46
end
47
48
local function eject_drops(drops, pos, radius)
0 commit comments