From 392120f28b9365b20da2e57afbb76aaefa6b3497 Mon Sep 17 00:00:00 2001 From: ChomeNS <95471003+ChomeNS@users.noreply.github.com> Date: Sun, 24 Nov 2024 17:06:55 +0700 Subject: [PATCH] fix: disable some stuff in the default config --- src/main/java/me/chayapak1/chomens_bot/Configuration.java | 6 +++--- src/main/resources/default-config.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/me/chayapak1/chomens_bot/Configuration.java b/src/main/java/me/chayapak1/chomens_bot/Configuration.java index deffd52..071a501 100644 --- a/src/main/java/me/chayapak1/chomens_bot/Configuration.java +++ b/src/main/java/me/chayapak1/chomens_bot/Configuration.java @@ -53,7 +53,7 @@ public class Configuration { } public static class InternetCheck { - public boolean enabled = true; + public boolean enabled = false; public String address = "https://sus.red"; } @@ -92,7 +92,7 @@ public class Configuration { } public static class Discord { - public boolean enabled = true; + public boolean enabled = false; public String prefix = "default!"; public String token; public Map servers = new HashMap<>(); @@ -104,7 +104,7 @@ public class Configuration { } public static class IRC { - public boolean enabled = true; + public boolean enabled = false; public String prefix = "!"; public String host; public int port; diff --git a/src/main/resources/default-config.yml b/src/main/resources/default-config.yml index 6c903df..6f79cf6 100644 --- a/src/main/resources/default-config.yml +++ b/src/main/resources/default-config.yml @@ -10,7 +10,7 @@ commandSpyPrefixes: consoleCommandPrefix: '.' internetCheck: - enabled: true + enabled: false address: 'https://sus.red' # how backup works is that it checks for the address every 1 minute, @@ -35,7 +35,7 @@ discord: localhost:25565: 'channel id' irc: - enabled: true + enabled: false prefix: '!' host: 'irc.libera.chat' port: 6665