Skip to content

Commit 23ae2fd

Browse files
fix: DoorType.Scp173NewGate is DoorType.Scp049Gate (#569)
Update Door.cs
1 parent 5a55e62 commit 23ae2fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • EXILED/Exiled.API/Features/Doors

EXILED/Exiled.API/Features/Doors/Door.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ private DoorType GetDoorType()
600600
{
601601
RoomType.EzCheckpointHallwayA => DoorType.CheckpointGateA,
602602
RoomType.EzCheckpointHallwayB => DoorType.CheckpointGateB,
603-
RoomType.Hcz049 => Position.y < -805 ? DoorType.Scp049Gate : DoorType.Scp173NewGate,
603+
RoomType.Hcz049 => Position.y < -10 ? DoorType.Scp049Gate : DoorType.Scp173NewGate,
604604
_ => DoorType.UnknownGate,
605605
},
606606
"Elevator Door" or "Nuke Elevator Door" or "Elevator Door 02" => (Base as Interactables.Interobjects.ElevatorDoor)?.Group switch

0 commit comments

Comments
 (0)