Set door bolt wire cut to false when mended (#18122)

This commit is contained in:
Vordenburg
2023-07-18 16:56:51 -04:00
committed by GitHub
parent 2715685f13
commit e47b782ba2

View File

@@ -28,7 +28,7 @@ public sealed class DoorBoltWireAction : ComponentWireAction<DoorBoltComponent>
public override bool Mend(EntityUid user, Wire wire, DoorBoltComponent door)
{
EntityManager.System<DoorBoltSystem>().SetBoltWireCut(door, true);
EntityManager.System<DoorBoltSystem>().SetBoltWireCut(door, false);
return true;
}