From fbd256c876f5fae56dd9cab846b69a7c1584e15b Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Sun, 28 Feb 2021 18:52:51 -0700 Subject: [PATCH] Fix playing the wall bump sound repeatedly in steam mode (fixes #49) --- js/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/game.js b/js/game.js index 466b6dc..0595818 100644 --- a/js/game.js +++ b/js/game.js @@ -1453,7 +1453,7 @@ export class Level extends LevelInterface { } } - if (actor.decision === null) { + if (actor.decision === null && ! forced_only) { actor.last_blocked_direction = null; }