mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
Change default threshold to -1
This commit is contained in:
parent
97903f3870
commit
533edc5f40
1 changed files with 2 additions and 2 deletions
|
@ -179,10 +179,10 @@ public class Settings extends Config {
|
||||||
public static final class Auto_Clear extends ConfigBlock {
|
public static final class Auto_Clear extends ConfigBlock {
|
||||||
@Create // This value has to be generated since an instance isn't static
|
@Create // This value has to be generated since an instance isn't static
|
||||||
public CALIBRATION CALIBRATION = null;
|
public CALIBRATION CALIBRATION = null;
|
||||||
public int THRESHOLD = 1;
|
public int THRESHOLD = -1;
|
||||||
public int REQUIRED_PLOTS = -1;
|
public int REQUIRED_PLOTS = -1;
|
||||||
public boolean CONFIRMATION = true;
|
public boolean CONFIRMATION = true;
|
||||||
public int DAYS = 7;
|
public int DAYS = 90;
|
||||||
public int SKIP_ACCOUNT_AGE_DAYS = -1;
|
public int SKIP_ACCOUNT_AGE_DAYS = -1;
|
||||||
public List<String> WORLDS = new ArrayList<>(Collections.singletonList("*"));
|
public List<String> WORLDS = new ArrayList<>(Collections.singletonList("*"));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue