From 62b2faa4e2aef0dc73309da2e82aa2c4fb0d36d7 Mon Sep 17 00:00:00 2001 From: Geoffrey Wu Date: Wed, 10 Jul 2024 21:11:53 -0400 Subject: [PATCH] geoword/game.js: fix incorrectAudio typo --- client/geoword/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/geoword/game.js b/client/geoword/game.js index e916c250..feda0545 100644 --- a/client/geoword/game.js +++ b/client/geoword/game.js @@ -138,7 +138,7 @@ function updateScore (isCorrect, givenAnswer, actualAnswer, prompts = []) { audio.correct.play(); numberCorrect++; } else { - audio.incorrectAudio.play(); + audio.incorrect.play(); document.getElementById('protest-text').classList.remove('d-none'); }