From 9e91db9ea446d78533d61ff49dff5ba6a6276455 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Wed, 27 Dec 2017 17:43:21 -0700 Subject: [PATCH] Removed force kick for attempting to use setup On many servers, players are tricked into running the /auth or /setup command to get them kicked. This is stupid. Since the system is disabled anyway, we don't need to kick them. --- TShockAPI/Commands.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 5f0fc008..a8c44869 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -4838,7 +4838,6 @@ namespace TShockAPI else { args.Player.SendWarningMessage("The initial setup system is disabled. This incident has been logged."); - TShock.Utils.ForceKick(args.Player, "The initial setup system is disabled.", true, true); TShock.Log.Warn("{0} attempted to use the initial setup system even though it's disabled.", args.Player.IP); return; }