Fixed airlocks not autoclosing anymore.

AutoClose is true by default now.
This commit is contained in:
Vera Aguilera Puerto
2021-10-10 15:58:17 +02:00
parent 6eee256b11
commit 2fe5db9498
2 changed files with 5 additions and 1 deletions

View File

@@ -176,7 +176,7 @@ namespace Content.Server.Doors.Components
/// Should this door automatically close if its been open for too long?
/// </summary>
[DataField("autoClose")]
public bool AutoClose;
public bool AutoClose = true;
/// <summary>
/// Default time that the door should take to pry open.

View File

@@ -0,0 +1,4 @@
author: Zumorica
changes:
- type: Fix # One of the following: Add, Remove, Tweak, Fix
message: Fix airlocks not auto-closing anymore.