Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
902seanryan committed Jan 31, 2024
1 parent 006abd1 commit 9d46381
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/plugins/SoundPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 9d46381

Please sign in to comment.