diff --git a/src/struct/funcs/botListApi.js b/src/struct/funcs/botListApi.js index b853f2aa..85456e50 100644 --- a/src/struct/funcs/botListApi.js +++ b/src/struct/funcs/botListApi.js @@ -11,7 +11,7 @@ module.exports = function (client) { .then((results) => { guildCount = results.reduce((prev, val) => prev + val, 0); dbl.postStats(guildCount * 7, client.shard.ids, client.config.shards); - bod.postStats(guildCount * 7, client.config.shards) + bod.postStats(guildCount * 7, client.shard.ids, client.config.shards) }) .catch(console.error); @@ -34,6 +34,6 @@ module.exports = function (client) { }*/ setInterval(() => { dbl.postStats(guildCount * 7, client.shard.ids, client.config.shards); - bod.postStats(guildCount * 7, client.config.shards) + bod.postStats(guildCount * 7, client.shard.ids, client.config.shards) }, 1800000); }; \ No newline at end of file