Make many entities non-pointable

This commit is contained in:
Wuzzy 2019-03-07 03:53:06 +01:00
parent 7ca999626d
commit 66c6b373a5
9 changed files with 12 additions and 5 deletions

View file

@ -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},

View file

@ -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 = {""},