Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions EXILED/Exiled.API/Enums/SpawnLocationType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,13 @@ public enum SpawnLocationType
/// <summary>
/// Inside the lower door that leads to the stairs in Micro-HID room.
/// </summary>
[Obsolete("This location has been removed from the game.")]
InsideHidLower,

/// <summary>
/// Inside the upper door that leads into the Micro-HID room just after the stairs.
/// </summary>
[Obsolete("This location has been removed from the game. Use InsideHidLab instead.")]
InsideHidUpper,

/// <summary>
Expand Down Expand Up @@ -168,5 +170,15 @@ public enum SpawnLocationType
/// Inside SCP-079's Armory
/// </summary>
Inside079Armory,

/// <summary>
/// Inside SCP-127's Lab
/// </summary>
Inside127Lab,

/// <summary>
/// Inside the upper door that leads into the Micro-HID Lab room.
/// </summary>
InsideHidLab,
}
}
6 changes: 3 additions & 3 deletions EXILED/Exiled.API/Extensions/SpawnExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static class SpawnExtensions
{
SpawnLocationType.InsideHczArmory,
SpawnLocationType.Inside079First,
SpawnLocationType.InsideHidUpper,
SpawnLocationType.InsideHidLab,
SpawnLocationType.Inside173Gate,
SpawnLocationType.InsideGateA,
SpawnLocationType.InsideGateB,
Expand Down Expand Up @@ -86,11 +86,10 @@ public static Vector3 GetPosition(this SpawnLocationType location)
SpawnLocationType.InsideGateA => "GATE_A",
SpawnLocationType.InsideGateB => "GATE_B",
SpawnLocationType.InsideLczWc => "LCZ_WC",
SpawnLocationType.InsideHidLower => "HID_LOWER",
SpawnLocationType.InsideLczCafe => "LCZ_CAFE",
SpawnLocationType.Inside173Gate => "173_GATE",
SpawnLocationType.InsideIntercom => "INTERCOM",
SpawnLocationType.InsideHidUpper => "HID_UPPER",
SpawnLocationType.InsideHidLab => "HID_LAB",
SpawnLocationType.Inside079First => "079_FIRST",
SpawnLocationType.Inside330Chamber => "330_CHAMBER",
SpawnLocationType.Inside049Armory => "049_ARMORY",
Expand All @@ -108,6 +107,7 @@ public static Vector3 GetPosition(this SpawnLocationType location)
SpawnLocationType.Inside106Secondary => "106_SECONDARY",
SpawnLocationType.Inside939Cryo => "939_CRYO",
SpawnLocationType.Inside079Armory => "079_ARMORY",
SpawnLocationType.Inside127Lab => "HCZ_127_LAB",
_ => default,
};
}
Expand Down
Loading