advanced api is disabled by default

This commit is contained in:
Jonas_Jones 2023-09-06 02:41:55 +02:00
parent 1a69b6ce2c
commit 668094844d

View file

@ -55,7 +55,7 @@ public class ModConfigs {
WEB_FILE_ROOT = CONFIG.getOrDefault("web.file.root", "index.html");
WEB_FILE_404 = CONFIG.getOrDefault("web.file.404", "404.html");
SERVER_API_ENABLED = CONFIG.getOrDefault("web.api", true);
ADV_API_ENABLED = CONFIG.getOrDefault("web.api.adv", true);
ADV_API_ENABLED = CONFIG.getOrDefault("web.api.adv", false);
WEB_FILE_NOSUPPORT = CONFIG.getOrDefault("web.file.notSupported", "not_supported.html");
VERBOSE = CONFIG.getOrDefault("logger.verbose", true);
}