From 3f5c2876a84d0b37bbde9804abb0d27d6d6702bd Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sun, 25 May 2025 13:12:29 +0900 Subject: [PATCH] Turn off RangeChecks by default Server operators can opt-in to more security later. --- TShockAPI/Configuration/TShockConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TShockAPI/Configuration/TShockConfig.cs b/TShockAPI/Configuration/TShockConfig.cs index e7ba55ab..54ce26a2 100644 --- a/TShockAPI/Configuration/TShockConfig.cs +++ b/TShockAPI/Configuration/TShockConfig.cs @@ -127,7 +127,7 @@ namespace TShockAPI.Configuration /// Enable or disable anti-cheat range checks based on distance between the player and their block placements. [Description("Enable or disable anti-cheat range checks based on distance between the player and their block placements.")] - public bool RangeChecks = true; + public bool RangeChecks; /// Prevents non-hardcore players from connecting. [Description("Prevents non-hardcore players from connecting.")]