From 7c41775d6db3e073b48f9c52886a42c423780357 Mon Sep 17 00:00:00 2001 From: Cai <13110818005@qq.com> Date: Wed, 17 Sep 2025 21:36:30 +0800 Subject: [PATCH] chore: silent kick on invalid client connection --- TShockAPI/TShock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 99153deb..d3b01b6d 100644 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -1456,7 +1456,7 @@ namespace TShockAPI if (!tsplr.FinishedHandshake) { - tsplr.Kick(GetString("Your client didn't send the right connection information."), true); + tsplr.Kick(GetString("Your client didn't send the right connection information."), true, true); args.Handled = true; return; }