From 925978db8f0269f5dfa69a21e967fc4e21ebb3dc Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 9 Oct 2020 17:26:52 +0100 Subject: [PATCH] change default lighting to 1 --- .../java/com/plotsquared/core/configuration/Settings.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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 d96a33025..bfa462404 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -546,11 +546,7 @@ public class Settings extends Config { " - 1 - Only execute lighting where blocks with light values are placed", " - 2 - Only execute lighting where blocks with light values are placed or removed/replaced", " - 3 - Always execute lighting (slowest)"}) - public static int LIGHTING_MODE = 0; - @Comment( - "For sake of allowing v5 -> v6" - ) - public static int TARGET_TIME = 30; + public static int LIGHTING_MODE = 1; } @Comment("Settings related to tab completion")