From 86a996b2ff4bc6a09172b0fa1e2bd1759bac692c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Wed, 13 May 2020 15:09:00 +0200 Subject: [PATCH] Make the tile entity check true by default, as it only applies when the chunk processor is enabled (and it's disabled by default) --- .../main/java/com/plotsquared/core/configuration/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 108bff9de..c99fd0268 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -485,7 +485,7 @@ public class Settings extends Config { @Comment("Cancel entity spawns from tick spawn rates before they happen (performance buff)") public static boolean CREATURE_SPAWN = true; @Comment("Check the tile entity limit on block placement") - public static boolean TILE_ENTITY_CHECK = false; + public static boolean TILE_ENTITY_CHECK = true; }