Skip to content

Commit c76a919

Browse files
ShadowNinjaparamat
authored andcommittedJan 5, 2016
Fix TNT drops being placed inside nodes
1 parent 0472e61 commit c76a919

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed
 

‎mods/tnt/init.lua

+14-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,20 @@ minetest.after(0, function()
2929
end)
3030

3131
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)
32+
local def
33+
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
3446
end
3547

3648
local function eject_drops(drops, pos, radius)

0 commit comments

Comments
 (0)