Make many entities non-pointable
This commit is contained in:
parent
7ca999626d
commit
66c6b373a5
9 changed files with 12 additions and 5 deletions
|
@ -13,6 +13,7 @@ minetest.register_entity("drippingwater:drop_water", {
|
|||
physical = true,
|
||||
collide_with_objects = false,
|
||||
collisionbox = {0,0,0,0,0,0},
|
||||
pointable = false,
|
||||
visual = "cube",
|
||||
visual_size = {x=0.05, y=0.1},
|
||||
textures = {water_tex, water_tex, water_tex, water_tex, water_tex, water_tex},
|
||||
|
|
|
@ -306,6 +306,7 @@ core.register_entity(":__builtin:item", {
|
|||
physical = true,
|
||||
collide_with_objects = false,
|
||||
collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.3, 0.3},
|
||||
pointable = false,
|
||||
visual = "wielditem",
|
||||
visual_size = {x = 0.4, y = 0.4},
|
||||
textures = {""},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue