Skip to content

Commit

Permalink
Merge pull request #34 from gabeklavans/bugfix/scoreboard-sounds
Browse files Browse the repository at this point in the history
fix(audio): disable results screen sfx
  • Loading branch information
gabeklavans authored Jun 21, 2024
2 parents 98918db + 920c9a3 commit e9df97e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ document.getElementById("left-button")?.addEventListener("pointerdown", () => {
return;
}

new Audio("assets/sfx/drag.mp3").play();

otherPlayerIdx--;
updateOtherPlayerColumn();
});
Expand All @@ -41,8 +39,6 @@ document.getElementById("right-button")?.addEventListener("pointerdown", () => {
return;
}

new Audio("assets/sfx/drag.mp3").play();

otherPlayerIdx++;
updateOtherPlayerColumn();
});
Expand Down

0 comments on commit e9df97e

Please sign in to comment.