Skip to content
Snippets Groups Projects
Commit 682d79b8 authored by Auke Kok's avatar Auke Kok Committed by paramat
Browse files

TNT: make tnt:burning a falling node.

This allows TNT to be used for e.g. traps (drop it from the
ceiling) or weird tnt effects with other explosions.
parent 8b384fb2
No related branches found
No related tags found
No related merge requests found
......@@ -502,6 +502,7 @@ function tnt.register_tnt(def)
light_source = 5,
drop = "",
sounds = default.node_sound_wood_defaults(),
groups = {falling_node = 1},
on_timer = function(pos, elapsed)
tnt.boom(pos, def)
end,
......@@ -510,6 +511,7 @@ function tnt.register_tnt(def)
on_construct = function(pos)
minetest.sound_play("tnt_ignite", {pos = pos})
minetest.get_node_timer(pos):start(4)
nodeupdate(pos)
end,
})
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment