From e6960ebdaac996bace72d8c79657bc9ff410187a Mon Sep 17 00:00:00 2001 From: Juliana Sims Date: Sat, 25 May 2024 18:39:24 -0400 Subject: [PATCH] Update ^bomb countdown value --- modules/game/actors.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/game/actors.scm b/modules/game/actors.scm index 02d660a..1bbdbb0 100644 --- a/modules/game/actors.scm +++ b/modules/game/actors.scm @@ -357,7 +357,7 @@ (define alive? (spawn ^cell #t)) (define countdown (spawn ^cell -1)) (define pushed? (spawn ^cell)) - (define* (light-fuse #:optional (time 3)) + (define* (light-fuse #:optional (time 2)) ($ countdown time)) (match-lambda* (('type) 'bomb)