forked from minetest/minetest_game
TNT: Chain reaction
With the new high res timer, we can make TNT much better create chain reactions. This does exactly that.
This commit is contained in:
parent
eafd1ebc43
commit
3ddff2fbea
|
@ -428,7 +428,9 @@ function tnt.register_tnt(def)
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
on_blast = function(pos, intensity)
|
on_blast = function(pos, intensity)
|
||||||
tnt.burn(pos)
|
minetest.after(0.1, function()
|
||||||
|
tnt.boom(pos, def)
|
||||||
|
end)
|
||||||
end,
|
end,
|
||||||
mesecons = {effector =
|
mesecons = {effector =
|
||||||
{action_on =
|
{action_on =
|
||||||
|
|
Loading…
Reference in New Issue
Block a user