Enable centered nodes by default

master
Wuzzy 2021-10-09 21:22:46 +02:00
parent 700f08cdce
commit 56d684601e
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ Several fields of the definition table are required, but most are optional
* def.sound_held_open - sound effect when trying to open a door in hold-open state * def.sound_held_open - sound effect when trying to open a door in hold-open state
or when center door is blocked or when center door is blocked
* def.sound_closing_mode - sound effect when changing door closing mode * def.sound_closing_mode - sound effect when changing door closing mode
* def.can_center - whether center positioning (default is false) * def.can_center - whether center positioning (default is true)
For programmatically examining and manipulating doors, two API functions are provided: For programmatically examining and manipulating doors, two API functions are provided:

View File

@ -928,7 +928,7 @@ function doors.register_door( name, def )
def.can_offset = true def.can_offset = true
end end
if def.can_center == nil then if def.can_center == nil then
def.can_center = false def.can_center = true
end end
if def.is_lockable == nil then if def.is_lockable == nil then