Removed audio playing on not buzzered

This commit is contained in:
EisiBaer 2023-07-14 18:08:34 +02:00
parent 58f8fedaec
commit 6a0d83454a
1 changed files with 0 additions and 6 deletions

View File

@ -211,10 +211,6 @@ function playerBuzzered( data ){
gameStore.acceptAnswers = false;
if( gameStore.playerId === data.payload.playerId ){
buzzBuzz.play();
} else {
if( !gameStore.isHost ){
buzzNoBuzz.play();
}
}
let playerIndex = gameStore.players.findIndex( playerEntry => playerEntry._id === data.payload.playerId );
if( playerIndex !== -1 ){
@ -401,10 +397,8 @@ onBeforeRouteLeave((to, from) => {
});
//TODO List:
// -Buzzer sound
// -Profile Pic
// -More Question Types
// -Players selecting BoardEntry
</script>