diff --git a/Exiled.API/Features/Room.cs b/Exiled.API/Features/Room.cs
index b8613d1cbc..1d94723a43 100644
--- a/Exiled.API/Features/Room.cs
+++ b/Exiled.API/Features/Room.cs
@@ -160,7 +160,7 @@ public bool AreLightsOff
{
foreach (RoomLightController light in RoomLightControllers)
{
- light.NetworkLightsEnabled = value;
+ light.NetworkLightsEnabled = !value;
}
}
}
diff --git a/Exiled.CreditTags/CreditTags.cs b/Exiled.CreditTags/CreditTags.cs
index aecb1b758e..9c69f4c928 100644
--- a/Exiled.CreditTags/CreditTags.cs
+++ b/Exiled.CreditTags/CreditTags.cs
@@ -64,8 +64,10 @@ private CreditTags()
///
public override void OnEnabled()
{
+ /*
RefreshHandler();
AttachHandler();
+ */
base.OnEnabled();
}
@@ -73,7 +75,9 @@ public override void OnEnabled()
///
public override void OnDisabled()
{
+ /*
UnattachHandler();
+ */
base.OnDisabled();
}
diff --git a/Exiled.Events/Patches/Events/Scp106/ExitStalking.cs b/Exiled.Events/Patches/Events/Scp106/ExitStalking.cs
index ac93ec10f4..0d70a7380f 100644
--- a/Exiled.Events/Patches/Events/Scp106/ExitStalking.cs
+++ b/Exiled.Events/Patches/Events/Scp106/ExitStalking.cs
@@ -32,7 +32,7 @@ private static IEnumerable Transpiler(IEnumerable newInstructions = ListPool.Pool.Get(instructions);
- LocalBuilder ev = generator.DeclareLocal(typeof(StalkingEventArgs));
+ LocalBuilder ev = generator.DeclareLocal(typeof(ExitStalkingEventArgs));
Label continueLabel = generator.DefineLabel();
Label returnLabel = generator.DefineLabel();
@@ -42,9 +42,9 @@ private static IEnumerable Transpiler(IEnumerable Transpiler(IEnumerable