From 92df0cf4a7564f40cb3023d50bfa7b63c1273a4b Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Sun, 12 Nov 2023 10:12:57 -0500 Subject: [PATCH] Trying something simpler for VoiceStateChange notification just to see if the event works --- breadbot.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/breadbot.js b/breadbot.js index 9790afb..5a5bfe7 100644 --- a/breadbot.js +++ b/breadbot.js @@ -81,8 +81,7 @@ client.on(Events.GuildCreate, async guild => { }) client.on(Events.VoiceStateUpdate, async ([oldState, newState]) => { - console.log(`Old State ${oldState}`) - console.log(`New State ${newState}`) + console.log("State Change") }) client.on(Events.MessageCreate, async message => {