3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-11 13:07:20 +00:00

Remove some debug code

This commit is contained in:
Dragory 2021-09-11 19:21:27 +03:00
parent 2f3db20a9c
commit bd95e4b902
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...");