diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-06-04 10:58:54 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-06-04 10:58:54 -0400 |
commit | 2eb9e7ec3c1a0e656f5b549c0f800d30f2ac5a40 (patch) | |
tree | 5341bb79bd180fe11bf8bb9010fc43ad201aad6b | |
parent | feed38794b0209d4defc3b7f110043b5ec86e92f (diff) |
Disable some developer stuff.
-rw-r--r-- | super-bloom/game.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/super-bloom/game.scm b/super-bloom/game.scm index 9d0dbeb..11c19d1 100644 --- a/super-bloom/game.scm +++ b/super-bloom/game.scm @@ -278,10 +278,8 @@ (bind-input <super-bloom-mode> (key-release 'down) player-move-down-stop) (bind-input <super-bloom-mode> (key-press 'up) player-move-up) (bind-input <super-bloom-mode> (key-release 'up) player-move-up-stop) -(bind-input <super-bloom-mode> (key-press 'space) add-random-water) -(bind-input <super-bloom-mode> (key-press 'return) add-random-dirt-ball) (bind-input <super-bloom-mode> (key-press 'z) do-spray-water) -(bind-input <super-bloom-mode> (key-press 'r) do-reset) +;;(bind-input <super-bloom-mode> (key-press 'r) do-reset) (define-class <game-over-mode> (<major-mode>)) |