diff options
-rw-r--r-- | scenes/game.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/game.scm b/scenes/game.scm index 2533310..f49a17a 100644 --- a/scenes/game.scm +++ b/scenes/game.scm @@ -225,7 +225,7 @@ positions layer." (when (eq? key 'q) (die game)) (let ((who (talking? player))) (cond - ((and (not who) (eq? 'space key)) + ((and (not who) (eq? 'space key) (not repeat?)) (handle-action player)) ((and who (not repeat?)) (handle-talking player key))))))) |