From f8ab2dce647a9c6906df69717797478c127b2f8f Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 27 Oct 2023 08:44:47 -0400 Subject: Re-enable player death sound, but half volume. --- game.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.scm b/game.scm index 0b7b4dd..b4ee027 100644 --- a/game.scm +++ b/game.scm @@ -936,7 +936,7 @@ (set-vec2-y! player-position (- game-height 12.0))) (define (player-die!) (unless *player-invincible?* - ;; (sound-effect-play sound:player-death) + (sound-effect-play sound:player-death 0.5) (set! *player-lives* (max (- *player-lives* 1) 0)) (player-position-reset!) (run-script -- cgit v1.2.3