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 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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue