From c16244562734eff9a6c875081f3da68dd1341204 Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Wed, 6 Jan 2021 22:58:54 -0700 Subject: [PATCH] Always play the get-chip sound --- js/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/game.js b/js/game.js index f4bbe9e..2f6299b 100644 --- a/js/game.js +++ b/js/game.js @@ -2174,8 +2174,8 @@ export class Level extends LevelInterface { } collect_chip() { + this.sfx.play_once('get-chip'); if (this.chips_remaining > 0) { - this.sfx.play_once('get-chip'); this.chips_remaining--; } }