diff --git a/EXILED/Exiled.API/Enums/SpawnLocationType.cs b/EXILED/Exiled.API/Enums/SpawnLocationType.cs index ae957d3362..2fc9d2a780 100644 --- a/EXILED/Exiled.API/Enums/SpawnLocationType.cs +++ b/EXILED/Exiled.API/Enums/SpawnLocationType.cs @@ -132,11 +132,13 @@ public enum SpawnLocationType /// /// Inside the lower door that leads to the stairs in Micro-HID room. /// + [Obsolete("This location has been removed from the game.")] InsideHidLower, /// /// Inside the upper door that leads into the Micro-HID room just after the stairs. /// + [Obsolete("This location has been removed from the game. Use InsideHidLab instead.")] InsideHidUpper, /// @@ -168,5 +170,15 @@ public enum SpawnLocationType /// Inside SCP-079's Armory /// Inside079Armory, + + /// + /// Inside SCP-127's Lab + /// + Inside127Lab, + + /// + /// Inside the upper door that leads into the Micro-HID Lab room. + /// + InsideHidLab, } } \ No newline at end of file diff --git a/EXILED/Exiled.API/Extensions/SpawnExtensions.cs b/EXILED/Exiled.API/Extensions/SpawnExtensions.cs index 29da4ab802..5e21f52eaa 100644 --- a/EXILED/Exiled.API/Extensions/SpawnExtensions.cs +++ b/EXILED/Exiled.API/Extensions/SpawnExtensions.cs @@ -25,7 +25,7 @@ public static class SpawnExtensions { SpawnLocationType.InsideHczArmory, SpawnLocationType.Inside079First, - SpawnLocationType.InsideHidUpper, + SpawnLocationType.InsideHidLab, SpawnLocationType.Inside173Gate, SpawnLocationType.InsideGateA, SpawnLocationType.InsideGateB, @@ -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", @@ -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, }; }