From 9e3755061024eee07115f0ebccaccd01151cd6b9 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sun, 27 May 2012 19:37:17 -0600 Subject: [PATCH] Unbanning a player is now case sensitive --- TShockAPI/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index c7eb3e5b..76b3fe02 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -866,7 +866,7 @@ namespace TShockAPI } string plStr = args.Parameters[0]; - var ban = TShock.Bans.GetBanByName(plStr); + var ban = TShock.Bans.GetBanByName(plStr, false); if (ban != null) { if (TShock.Bans.RemoveBan(ban.Name, true))