From 9d649e0b59bd2531b966191426ebf5bf334bf9c4 Mon Sep 17 00:00:00 2001 From: Joseph <108951296+Josephfallen@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:55:32 -0400 Subject: [PATCH] Update Map.cs --- EXILED/Exiled.API/Features/Map.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EXILED/Exiled.API/Features/Map.cs b/EXILED/Exiled.API/Features/Map.cs index 9df9bbd37c..d0b31f3919 100644 --- a/EXILED/Exiled.API/Features/Map.cs +++ b/EXILED/Exiled.API/Features/Map.cs @@ -175,6 +175,12 @@ public static void ShowHint(string message, float duration = 3f) /// public static void StartDecontamination() => DecontaminationController.Singleton.ForceDecontamination(); + /// + /// Turns on all lights in the facility. + /// + /// The s to affect. + public static void TurnOnAllLights(IEnumerable zoneTypes) => TurnOffAllLights(0, zoneTypes); + /// /// Turns off all lights in the facility. ///