fix: disable some stuff in the default config

This commit is contained in:
Chayapak 2024-11-24 17:06:55 +07:00
parent 975199bf4f
commit 392120f28b
Signed by: ChomeNS
SSH key fingerprint: SHA256:0YoxhdyXsgbc0nfeB2N6FYE60mxMU7DS4uCUMaw2mvA
2 changed files with 5 additions and 5 deletions

View file

@ -53,7 +53,7 @@ public class Configuration {
} }
public static class InternetCheck { public static class InternetCheck {
public boolean enabled = true; public boolean enabled = false;
public String address = "https://sus.red"; public String address = "https://sus.red";
} }
@ -92,7 +92,7 @@ public class Configuration {
} }
public static class Discord { public static class Discord {
public boolean enabled = true; public boolean enabled = false;
public String prefix = "default!"; public String prefix = "default!";
public String token; public String token;
public Map<String, String> servers = new HashMap<>(); public Map<String, String> servers = new HashMap<>();
@ -104,7 +104,7 @@ public class Configuration {
} }
public static class IRC { public static class IRC {
public boolean enabled = true; public boolean enabled = false;
public String prefix = "!"; public String prefix = "!";
public String host; public String host;
public int port; public int port;

View file

@ -10,7 +10,7 @@ commandSpyPrefixes:
consoleCommandPrefix: '.' consoleCommandPrefix: '.'
internetCheck: internetCheck:
enabled: true enabled: false
address: 'https://sus.red' address: 'https://sus.red'
# how backup works is that it checks for the address every 1 minute, # how backup works is that it checks for the address every 1 minute,
@ -35,7 +35,7 @@ discord:
localhost:25565: 'channel id' localhost:25565: 'channel id'
irc: irc:
enabled: true enabled: false
prefix: '!' prefix: '!'
host: 'irc.libera.chat' host: 'irc.libera.chat'
port: 6665 port: 6665