From 9d4638161d4ca0fb1baba9cfbfd554266d9f6344 Mon Sep 17 00:00:00 2001 From: 902seanryan Date: Wed, 31 Jan 2024 14:26:25 -0400 Subject: [PATCH] remove console logs --- src/plugins/SoundPlugin.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/SoundPlugin.js b/src/plugins/SoundPlugin.js index 576990e..3fbb813 100644 --- a/src/plugins/SoundPlugin.js +++ b/src/plugins/SoundPlugin.js @@ -403,11 +403,9 @@ export class SoundPlugin extends ButtonPlugin { */ async preload({ client }) { this.client = client; - console.log('sound plugin preload'); this.client.on( 'features', function(features) { - console.log('features!', features); if (!features.data) { return; } @@ -448,8 +446,6 @@ export class SoundPlugin extends ButtonPlugin { this.voSliders[i].displaySlider(features.data); } - - console.log('setting the mute props for sound et all'); const soundMuted = !!SavedData.read(SoundPlugin.soundMutedKey); const musicMuted = !!SavedData.read(SoundPlugin.musicMutedKey); const sfxMuted = !!SavedData.read(SoundPlugin.sfxMutedKey);