Skip to content

Commit 9d46381

Browse files
committed
remove console logs
1 parent 006abd1 commit 9d46381

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/plugins/SoundPlugin.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -403,11 +403,9 @@ export class SoundPlugin extends ButtonPlugin {
403403
*/
404404
async preload({ client }) {
405405
this.client = client;
406-
console.log('sound plugin preload');
407406
this.client.on(
408407
'features',
409408
function(features) {
410-
console.log('features!', features);
411409
if (!features.data) {
412410
return;
413411
}
@@ -448,8 +446,6 @@ export class SoundPlugin extends ButtonPlugin {
448446
this.voSliders[i].displaySlider(features.data);
449447
}
450448

451-
452-
console.log('setting the mute props for sound et all');
453449
const soundMuted = !!SavedData.read(SoundPlugin.soundMutedKey);
454450
const musicMuted = !!SavedData.read(SoundPlugin.musicMutedKey);
455451
const sfxMuted = !!SavedData.read(SoundPlugin.sfxMutedKey);

0 commit comments

Comments
 (0)