From 45b9a62c6496a65cfed77aad4615f7d0ad99d6cb Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 14 Apr 2024 16:39:24 -0400 Subject: [PATCH] Removed dev comments stopping OP25 --- client/discordAudioBot/pdabWrappers.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/discordAudioBot/pdabWrappers.mjs b/client/discordAudioBot/pdabWrappers.mjs index 52bde89..c4d4e1f 100644 --- a/client/discordAudioBot/pdabWrappers.mjs +++ b/client/discordAudioBot/pdabWrappers.mjs @@ -15,7 +15,7 @@ export const joinDiscordVC = async (joinData) => { // Open a new client and join the requested channel with the requested ID initDiscordBotClient(joinData.clientID, () => { // Open an instance of OP25 - // TODO DELTE comment DEV ONLY openOP25(joinData.system); + openOP25(joinData.system); // Add the client object to the IO instance connectToChannel(joinData.channelID, (connectionStatus) => { @@ -46,7 +46,7 @@ export const leaveDiscordVC = async (guildId) => { console.log("Client should remain open: ", clientRemainsOpen); if (!clientRemainsOpen) { console.log("There are no open VC connections"); - // TODO DELETE comment DEV ONLY await closeOP25(); + await closeOP25(); // Close the python client await requestDiscordClientClose();