diff --git a/EXILED/Exiled.API/Enums/SpawnLocationType.cs b/EXILED/Exiled.API/Enums/SpawnLocationType.cs
index 1ebd57cc95..ae957d3362 100644
--- a/EXILED/Exiled.API/Enums/SpawnLocationType.cs
+++ b/EXILED/Exiled.API/Enums/SpawnLocationType.cs
@@ -143,5 +143,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 a987a56265..29da4ab802 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,
};
///
@@ -102,6 +103,11 @@ public static Vector3 GetPosition(this SpawnLocationType location)
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,
};
}