Set debug to false by default

No need to enable it unless you are actually debugging something
This commit is contained in:
NotMyFault 2020-05-18 21:50:03 +02:00 committed by GitHub
parent 5fabd15caf
commit 10ec476239
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -410,7 +410,7 @@ public class Settings extends Config {
}) })
public List<String> ALLOWED_PLUGINS = new ArrayList<>(); public List<String> ALLOWED_PLUGINS = new ArrayList<>();
@Comment("Should debug messages be sent when third party extents are used?") @Comment("Should debug messages be sent when third party extents are used?")
public boolean DEBUG = true; public boolean DEBUG = false;
} }
@Comment("Generic tick limiter (not necessarily WorldEdit related, but useful to stop abuse)") @Comment("Generic tick limiter (not necessarily WorldEdit related, but useful to stop abuse)")