summaryrefslogtreecommitdiff
path: root/src/bot.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.js')
-rw-r--r--src/bot.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/bot.js b/src/bot.js
index 21eadf5..3ec9aa1 100644
--- a/src/bot.js
+++ b/src/bot.js
@@ -110,16 +110,4 @@ client.on('warn', (info) => {
console.warn(`[WARN] ${new Date().toISOString()} - ${info}`);
});
-client.on('debug', (info) => {
- if (info.includes('VOICE') || info.includes('Voice') || info.includes('voice')) {
- console.log(`[DJS DEBUG] ${info}`);
- }
-});
-
-client.on('raw', (packet) => {
- if (packet.t === 'VOICE_STATE_UPDATE' || packet.t === 'VOICE_SERVER_UPDATE') {
- console.log(`[RAW ${packet.t}]`, JSON.stringify(packet.d));
- }
-});
-
client.login(process.env.DISCORD_TOKEN); \ No newline at end of file