From 0012bf73dafd891881fff778d5e356c7df814a04 Mon Sep 17 00:00:00 2001 From: Chris <2648373+QuiCM@users.noreply.github.com> Date: Thu, 28 Jan 2021 19:33:52 +1030 Subject: [PATCH] Remove obsolete config options relating to bans --- TShockAPI/Configuration/TShockConfig.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/TShockAPI/Configuration/TShockConfig.cs b/TShockAPI/Configuration/TShockConfig.cs index 25b72c31..0306ec7f 100644 --- a/TShockAPI/Configuration/TShockConfig.cs +++ b/TShockAPI/Configuration/TShockConfig.cs @@ -334,18 +334,6 @@ namespace TShockAPI.Configuration [Description("The reason given when banning hardcore players on death.")] public string HardcoreBanReason = "Death results in a ban"; - /// Enables kicking banned users by matching their IP Address. - [Description("Enables kicking banned users by matching their IP Address.")] - public bool EnableIPBans = true; - - /// Enables kicking banned users by matching their client UUID. - [Description("Enables kicking banned users by matching their client UUID.")] - public bool EnableUUIDBans = true; - - /// Enables kicking banned users by matching their Character Name. - [Description("Enables kicking banned users by matching their Character Name.")] - public bool EnableBanOnUsernames; - /// If GeoIP is enabled, this will kick users identified as being under a proxy. [Description("If GeoIP is enabled, this will kick users identified as being under a proxy.")] public bool KickProxyUsers = true;