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();