mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-09 17:03:58 +01:00
workaround for transported items sometimes just appearing out of nowhere
but not being diggable. Made them have a really tiny collision box so they can be pointed at if carefully done
This commit is contained in:
parent
85499aa156
commit
9a42a5f18b
@ -205,7 +205,8 @@ minetest.register_entity("pipeworks:tubed_item", {
|
||||
initial_properties = {
|
||||
hp_max = 1,
|
||||
physical = false,
|
||||
collisionbox = {0,0,0,0,0,0},
|
||||
-- collisionbox = {0,0,0,0,0,0},
|
||||
collisionbox = {0.1,0.1,0.1,0.1,0.1,0.1},
|
||||
visual = "sprite",
|
||||
visual_size = {x=0.5, y=0.5},
|
||||
textures = {""},
|
||||
|
Loading…
Reference in New Issue
Block a user