Merge pull request #102 from BigBotNetwork/master

remove
This commit is contained in:
Skidder 2019-11-25 05:10:23 -08:00 committed by GitHub
commit 71c7c99a08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,18 +167,6 @@ public class BotList {
// Discord Bots // Discord Bots
Request discordbots = new Request.Builder()
.url(DiscordBots)
.post(body)
.addHeader("Authorization", config.getDiscordBotsToken())
.build();
try {
new OkHttpClient().newCall(discordbots).execute().close();
System.out.println("Successfully posted count to Discord Bots!");
} catch (IOException e) {
e.printStackTrace();
}
} }
} }