1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00

Update botListApi.js

This commit is contained in:
MatteZ02 2020-04-25 19:01:11 +03:00
parent 48e1d85321
commit d9b44a3d58

View File

@ -17,9 +17,6 @@ module.exports = function (client) {
dbl.on("error", (e) => {
console.log(`DBL error: ${e}`);
});
bod.on("posted", (m) => {
console.log(m);
});
bod.on("error", (e) => {
console.log(`BOD error ${e}`);
});
@ -37,14 +34,4 @@ module.exports = function (client) {
setInterval(() => {
dbl.postStats(guildCount * 7, client.shard.ids, client.config.shards);
}, 1800000);
};
const bod_api = require("bodapi.js");
const bod = new bod_api("ApeUyjSHi0tmMYybVwai3PxKvFvq3S", client);
bod.on("posted", (m) => {
console.log(m);
});
bod.on("error", (e) => {
console.log(`BOD error ${e}`);
});
};