From 533edc5f406ef8e3c760c8ec604becc996ffde9b Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Wed, 10 Apr 2019 17:10:17 +1000 Subject: [PATCH] Change default threshold to -1 --- .../intellectualsites/plotsquared/plot/config/Settings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/config/Settings.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/config/Settings.java index f2a669823..4c142697e 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/config/Settings.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/config/Settings.java @@ -179,10 +179,10 @@ public class Settings extends Config { public static final class Auto_Clear extends ConfigBlock { @Create // This value has to be generated since an instance isn't static public CALIBRATION CALIBRATION = null; - public int THRESHOLD = 1; + public int THRESHOLD = -1; public int REQUIRED_PLOTS = -1; public boolean CONFIRMATION = true; - public int DAYS = 7; + public int DAYS = 90; public int SKIP_ACCOUNT_AGE_DAYS = -1; public List WORLDS = new ArrayList<>(Collections.singletonList("*"));