Make dropped items non-pointable
This commit is contained in:
parent
a525fbace1
commit
06edc935b7
@ -12,6 +12,7 @@ minetest.register_entity(
|
|||||||
physical = true,
|
physical = true,
|
||||||
collisionbox = {-0.125, -0.125, -0.125, 0.125, 0.125, 0.125},
|
collisionbox = {-0.125, -0.125, -0.125, 0.125, 0.125, 0.125},
|
||||||
collide_with_objects = false,
|
collide_with_objects = false,
|
||||||
|
pointable = false,
|
||||||
visual = "sprite",
|
visual = "sprite",
|
||||||
visual_size = {x=0.15, y=0.15},
|
visual_size = {x=0.15, y=0.15},
|
||||||
textures = {""},
|
textures = {""},
|
||||||
@ -150,4 +151,4 @@ minetest.register_entity(
|
|||||||
--]]
|
--]]
|
||||||
})
|
})
|
||||||
|
|
||||||
default.log("mod:builtin_item", "loaded")
|
default.log("mod:builtin_item", "loaded")
|
||||||
|
Loading…
Reference in New Issue
Block a user