fix: disable some stuff in the default config
This commit is contained in:
parent
975199bf4f
commit
392120f28b
2 changed files with 5 additions and 5 deletions
|
@ -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<String, String> 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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue