forked from VoxeLibre/VoxeLibre
Stop tnt colliding with entities (#4476)
Reviewed-on: VoxeLibre/VoxeLibre#4476 Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land> Co-authored-by: WillConker <waj01@joanes.net> Co-committed-by: WillConker <waj01@joanes.net>
This commit is contained in:
parent
1c5f7d05fe
commit
293eb6d021
|
@ -116,6 +116,7 @@ minetest.register_node("mcl_tnt:tnt", {
|
||||||
local TNT = {
|
local TNT = {
|
||||||
-- Static definition
|
-- Static definition
|
||||||
physical = true, -- Collides with things
|
physical = true, -- Collides with things
|
||||||
|
collide_with_objects = false,
|
||||||
--weight = -100,
|
--weight = -100,
|
||||||
collisionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },
|
collisionbox = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 },
|
||||||
visual = "cube",
|
visual = "cube",
|
||||||
|
|
Loading…
Reference in New Issue