mods doors - fix error on sounds that xpected table on new engines
* backported commit 201cf5f for newer engines mostly 5.3
This commit is contained in:
parent
77484db3a4
commit
60ac7cccc9
@ -1006,7 +1006,7 @@ function doors.register_fencegate(name, def)
|
||||
|
||||
fence_closed.mesh = "doors_fencegate_closed.obj"
|
||||
fence_closed.gate = name .. "_open"
|
||||
fence_closed.sound = "doors_fencegate_open"
|
||||
fence_closed.sound = (is_54 and {"doors_fencegate_open"} or "doors_fencegate_open")
|
||||
fence_closed.collision_box = {
|
||||
type = "fixed",
|
||||
fixed = {-1/2, -1/2, -1/4, 1/2, 1/2 + fence_collision_extra, 1/4}
|
||||
@ -1016,7 +1016,7 @@ function doors.register_fencegate(name, def)
|
||||
|
||||
fence_open.mesh = "doors_fencegate_open.obj"
|
||||
fence_open.gate = name .. "_closed"
|
||||
fence_open.sound = "doors_fencegate_close"
|
||||
fence_open.sound = (is_54 and {"doors_fencegate_close"} or "doors_fencegate_close")
|
||||
fence_open.groups.not_in_creative_inventory = 1
|
||||
fence_open.collision_box = {
|
||||
type = "fixed",
|
||||
|
Loading…
x
Reference in New Issue
Block a user