mirror of
https://github.com/minetest/minetest_game.git
synced 2025-03-31 07:12:32 +02:00
Doors: Trim open fence gate collision box
Previously, the collision box extended into an empty node, causing falling node objects to land on the open gate but not transform back into normal nodes. Now fallng node objects will fall through and either side of the end of the open gate and transform back.
This commit is contained in:
@ -706,7 +706,7 @@ function doors.register_fencegate(name, def)
|
|||||||
fence_open.collision_box = {
|
fence_open.collision_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {{-1/2, -1/2, -1/4, -3/8, 1/2, 1/4},
|
fixed = {{-1/2, -1/2, -1/4, -3/8, 1/2, 1/4},
|
||||||
{-5/8, -3/8, -14/16, -3/8, 3/8, 0}},
|
{-5/8, -3/8, -1/2, -3/8, 3/8, 0}},
|
||||||
}
|
}
|
||||||
|
|
||||||
minetest.register_node(":" .. name .. "_closed", fence_closed)
|
minetest.register_node(":" .. name .. "_closed", fence_closed)
|
||||||
|
Reference in New Issue
Block a user