diff --git a/EXILED/Exiled.API/Enums/SpawnLocationType.cs b/EXILED/Exiled.API/Enums/SpawnLocationType.cs
index 2a099f224..7a11afd0a 100644
--- a/EXILED/Exiled.API/Enums/SpawnLocationType.cs
+++ b/EXILED/Exiled.API/Enums/SpawnLocationType.cs
@@ -78,11 +78,6 @@ public enum SpawnLocationType
///
InsideLczCafe,
- ///
- /// Inside the Nuke armory.
- ///
- InsideNukeArmory,
-
///
/// Inside the surface nuke room.
///
@@ -142,5 +137,30 @@ public enum SpawnLocationType
/// Just inside the LCZ WC door.
///
InsideLczWc,
+
+ ///
+ /// Inside the Glass Box in GR-18.
+ ///
+ InsideGr18Glass,
+
+ ///
+ /// Inside 106's Primary Door
+ ///
+ Inside106Primary,
+
+ ///
+ /// Inside 106's Secondary Door
+ ///
+ Inside106Secondary,
+
+ ///
+ /// Inside 939 Cryo Chamber
+ ///
+ Inside939Cryo,
+
+ ///
+ /// Inside SCP-079's Armory
+ ///
+ Inside079Armory,
}
}
\ No newline at end of file
diff --git a/EXILED/Exiled.API/Extensions/SpawnExtensions.cs b/EXILED/Exiled.API/Extensions/SpawnExtensions.cs
index b7d35f404..29da4ab80 100644
--- a/EXILED/Exiled.API/Extensions/SpawnExtensions.cs
+++ b/EXILED/Exiled.API/Extensions/SpawnExtensions.cs
@@ -34,6 +34,7 @@ public static class SpawnExtensions
SpawnLocationType.Inside914,
SpawnLocationType.Inside049Armory,
SpawnLocationType.InsideLczCafe,
+ SpawnLocationType.Inside939Cryo,
};
///
@@ -97,12 +98,16 @@ public static Vector3 GetPosition(this SpawnLocationType location)
SpawnLocationType.Inside173Bottom => "173_BOTTOM",
SpawnLocationType.InsideLczArmory => "LCZ_ARMORY",
SpawnLocationType.InsideHczArmory => "HCZ_ARMORY",
- SpawnLocationType.InsideNukeArmory => "NUKE_ARMORY",
SpawnLocationType.InsideSurfaceNuke => "SURFACE_NUKE",
SpawnLocationType.Inside079Secondary => "079_SECOND",
SpawnLocationType.Inside173Connector => "173_CONNECTOR",
SpawnLocationType.InsideEscapePrimary => "ESCAPE_PRIMARY",
SpawnLocationType.InsideEscapeSecondary => "ESCAPE_SECONDARY",
+ SpawnLocationType.InsideGr18Glass => "GR18_INNER",
+ SpawnLocationType.Inside106Primary => "106_PRIMARY",
+ SpawnLocationType.Inside106Secondary => "106_SECONDARY",
+ SpawnLocationType.Inside939Cryo => "939_CRYO",
+ SpawnLocationType.Inside079Armory => "079_ARMORY",
_ => default,
};
}