From 654a687ddab7479c8beb36b478ba29dd0fa7873e Mon Sep 17 00:00:00 2001 From: Snivy Films <120346554+SnivyFilms@users.noreply.github.com> Date: Sat, 4 Jan 2025 09:58:39 -0500 Subject: [PATCH] fix!: Fixed MicroHID Dynamic Spawn Points and Lcz Reverse Door Fix (#370) Actually did the thing involving me not being stupid Co-authored-by: Snivy Films --- EXILED/Exiled.API/Enums/SpawnLocationType.cs | 12 ++++++------ EXILED/Exiled.API/Extensions/SpawnExtensions.cs | 11 +++++------ 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/EXILED/Exiled.API/Enums/SpawnLocationType.cs b/EXILED/Exiled.API/Enums/SpawnLocationType.cs index 0cd2c6dde..2a099f224 100644 --- a/EXILED/Exiled.API/Enums/SpawnLocationType.cs +++ b/EXILED/Exiled.API/Enums/SpawnLocationType.cs @@ -124,19 +124,19 @@ public enum SpawnLocationType InsideHczArmory, /// - /// Inside the Micro-HID room. + /// Inside the chamber that contains the Micro-HID in Micro-HID room. /// - InsideHid, + InsideHidChamber, /// - /// Just inside the left door next to Micro-HID room. + /// Inside the lower door that leads to the stairs in Micro-HID room. /// - InsideHidLeft, + InsideHidLower, /// - /// Just inside the right door next to Micro-HID room. + /// Inside the upper door that leads into the Micro-HID room just after the stairs. /// - InsideHidRight, + InsideHidUpper, /// /// Just inside the LCZ WC door. diff --git a/EXILED/Exiled.API/Extensions/SpawnExtensions.cs b/EXILED/Exiled.API/Extensions/SpawnExtensions.cs index 5c1c31f89..b7d35f404 100644 --- a/EXILED/Exiled.API/Extensions/SpawnExtensions.cs +++ b/EXILED/Exiled.API/Extensions/SpawnExtensions.cs @@ -25,16 +25,15 @@ public static class SpawnExtensions { SpawnLocationType.InsideHczArmory, SpawnLocationType.Inside079First, - SpawnLocationType.InsideHidRight, + SpawnLocationType.InsideHidUpper, SpawnLocationType.Inside173Gate, - SpawnLocationType.InsideHidLeft, SpawnLocationType.InsideGateA, SpawnLocationType.InsideGateB, SpawnLocationType.InsideLczWc, SpawnLocationType.InsideGr18, SpawnLocationType.Inside914, - SpawnLocationType.InsideHid, SpawnLocationType.Inside049Armory, + SpawnLocationType.InsideLczCafe, }; /// @@ -81,16 +80,16 @@ public static Vector3 GetPosition(this SpawnLocationType location) SpawnLocationType.Inside330 => "330", SpawnLocationType.Inside096 => "096", SpawnLocationType.Inside914 => "914", - SpawnLocationType.InsideHid => "HID", + SpawnLocationType.InsideHidChamber => "HID_CHAMBER", SpawnLocationType.InsideGr18 => "GR18", SpawnLocationType.InsideGateA => "GATE_A", SpawnLocationType.InsideGateB => "GATE_B", SpawnLocationType.InsideLczWc => "LCZ_WC", - SpawnLocationType.InsideHidLeft => "HID_LEFT", + SpawnLocationType.InsideHidLower => "HID_LOWER", SpawnLocationType.InsideLczCafe => "LCZ_CAFE", SpawnLocationType.Inside173Gate => "173_GATE", SpawnLocationType.InsideIntercom => "INTERCOM", - SpawnLocationType.InsideHidRight => "HID_RIGHT", + SpawnLocationType.InsideHidUpper => "HID_UPPER", SpawnLocationType.Inside079First => "079_FIRST", SpawnLocationType.Inside330Chamber => "330_CHAMBER", SpawnLocationType.Inside049Armory => "049_ARMORY",