3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

Set debug to false by default

No need to enable it unless you are actually debugging something
Dieser Commit ist enthalten in:
NotMyFault 2020-05-18 21:50:03 +02:00 committet von GitHub
Ursprung 5fabd15caf
Commit 10ec476239
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -410,7 +410,7 @@ public class Settings extends Config {
})
public List<String> ALLOWED_PLUGINS = new ArrayList<>();
@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)")