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