Make the tile entity check true by default, as it only applies when the chunk processor is enabled (and it's disabled by default)

This commit is contained in:
Alexander Söderberg 2020-05-13 15:09:00 +02:00
parent e6a9daf31a
commit 86a996b2ff
No known key found for this signature in database
GPG Key ID: C0207FF7EA146678

View File

@ -485,7 +485,7 @@ public class Settings extends Config {
@Comment("Cancel entity spawns from tick spawn rates before they happen (performance buff)") @Comment("Cancel entity spawns from tick spawn rates before they happen (performance buff)")
public static boolean CREATURE_SPAWN = true; public static boolean CREATURE_SPAWN = true;
@Comment("Check the tile entity limit on block placement") @Comment("Check the tile entity limit on block placement")
public static boolean TILE_ENTITY_CHECK = false; public static boolean TILE_ENTITY_CHECK = true;
} }