3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-06 10:37:19 +00:00

Remove some debug code

This commit is contained in:
Dragory 2021-09-11 19:21:27 +03:00
parent e6694f3751
commit f5d1bbee90
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
4 changed files with 0 additions and 66 deletions

View file

@ -307,22 +307,6 @@ connect().then(async () => {
startUptimeCounter();
});
const debugGuilds = ["877581055920603238", "348468156597010432", "134286179121102848"];
bot.on("guildLoaded", (guildId) => {
if (!debugGuilds.includes(guildId)) {
return;
}
console.log(`[!! DEBUG !!] LOADED GUILD ${guildId}`);
});
bot.on("guildUnloaded", (guildId) => {
if (!debugGuilds.includes(guildId)) {
return;
}
console.log(`[!! DEBUG !!] UNLOADED GUILD ${guildId}`);
});
bot.initialize();
logger.info("Bot Initialized");
logger.info("Logging in...");