From b5c5aeb798764eb75cf9863e7ea402f8f473c739 Mon Sep 17 00:00:00 2001 From: "@Someone" <45270312+Someone-193@users.noreply.github.com> Date: Tue, 23 Dec 2025 11:01:07 -0500 Subject: [PATCH] stuff --- EXILED/Exiled.CustomRoles/Commands/Get.cs | 2 +- EXILED/Exiled.CustomRoles/Commands/Give.cs | 2 +- EXILED/Exiled.Events/Patches/Events/Scp559/Interacting.cs | 2 ++ EXILED/Exiled.Events/Patches/Events/Scp559/Spawning.cs | 2 ++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/EXILED/Exiled.CustomRoles/Commands/Get.cs b/EXILED/Exiled.CustomRoles/Commands/Get.cs index a37ec11ced..7d96d5f6b4 100644 --- a/EXILED/Exiled.CustomRoles/Commands/Get.cs +++ b/EXILED/Exiled.CustomRoles/Commands/Get.cs @@ -60,7 +60,7 @@ public bool Execute(ArraySegment arguments, ICommandSender sender, out s { string identifier = string.Join(" ", arguments); - switch (identifier) + switch (identifier.ToLower()) { case "*": case "all": diff --git a/EXILED/Exiled.CustomRoles/Commands/Give.cs b/EXILED/Exiled.CustomRoles/Commands/Give.cs index 2f74b46498..9666bff990 100644 --- a/EXILED/Exiled.CustomRoles/Commands/Give.cs +++ b/EXILED/Exiled.CustomRoles/Commands/Give.cs @@ -83,7 +83,7 @@ public bool Execute(ArraySegment arguments, ICommandSender sender, out s string identifier = string.Join(" ", arguments.Skip(1)); - switch (identifier) + switch (identifier.ToLower()) { case "*": case "all": diff --git a/EXILED/Exiled.Events/Patches/Events/Scp559/Interacting.cs b/EXILED/Exiled.Events/Patches/Events/Scp559/Interacting.cs index 1c0f3442e3..b707c824ff 100644 --- a/EXILED/Exiled.Events/Patches/Events/Scp559/Interacting.cs +++ b/EXILED/Exiled.Events/Patches/Events/Scp559/Interacting.cs @@ -68,6 +68,8 @@ private static IEnumerable Transpiler(IEnumerable.Pool.Return(newInstructions); } } } \ No newline at end of file diff --git a/EXILED/Exiled.Events/Patches/Events/Scp559/Spawning.cs b/EXILED/Exiled.Events/Patches/Events/Scp559/Spawning.cs index 8027c34ad9..cd52be3cc0 100644 --- a/EXILED/Exiled.Events/Patches/Events/Scp559/Spawning.cs +++ b/EXILED/Exiled.Events/Patches/Events/Scp559/Spawning.cs @@ -76,6 +76,8 @@ private static IEnumerable Transpiler(IEnumerable.Pool.Return(newInstructions); } } } \ No newline at end of file