Update a lot of config stuff

This commit is contained in:
GregTCLTK 2020-02-23 20:53:06 +01:00
parent 3d010c42cf
commit ca0f0f5693
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67

View file

@ -70,17 +70,22 @@ public class Config {
.key("Tokens").object() .key("Tokens").object()
.key("BotToken").value(null) .key("BotToken").value(null)
.key("Giphy").value(null) .key("Giphy").value(null)
.key("GitHub").value(null)
.key("MythicalBotList").value(null) .key("MythicalBotList").value(null)
.key("BotsForDiscord").value(null) .key("BotsForDiscord").value(null)
.key("DiscordBotList").value(null) .key("DiscordBotList").value(null)
.key("DiscordBestBots").value(null)
.key("DiscordBoats").value(null) .key("DiscordBoats").value(null)
.key("YetAnotherBotList").value(null) .key("YetAnotherBotList").value(null)
.key("DiscordExtremeList").value(null) .key("DiscordExtremeList").value(null)
.key("DiscordBotReviews").value(null) .key("DiscordBotReviews").value(null)
.key("DiscordBots").value(null) .key("DiscordBots").value(null)
.key("BotListSpace").value(null) .key("BotListSpace").value(null)
.endObject().endObject().toString(); .key("DiscordBots2").value(null)
.key("CloudList").value(null)
.key("Arcane").value(null)
.endObject()
.key("Clyde").value("Clyde")
.endObject().toString();
} }
public String getBotToken() { public String getBotToken() {
@ -159,6 +164,10 @@ public class Config {
return config.getJSONObject("Tokens").getString("CloudList"); return config.getJSONObject("Tokens").getString("CloudList");
} }
public String getArcaneToken() {
return config.getJSONObject("Tokens").getString("Arcane");
}
public String getClydeName() { public String getClydeName() {
return config.getString("Clyde"); return config.getString("Clyde");
} }