From 1c7ab8bba6ddbdf444f150b0fe8dbfefea58ffd8 Mon Sep 17 00:00:00 2001 From: Christine Lemmer-Webber Date: Tue, 4 Jun 2024 16:20:33 -0400 Subject: [PATCH] Make the bomb animation times a bit more exciting --- game.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/game.scm b/game.scm index b4e2bbe..31a38ed 100644 --- a/game.scm +++ b/game.scm @@ -461,15 +461,15 @@ (137 .4) (157 .4)) (define-animation anim:bomb-lit - (53 .4) - (73 .4) - (93 .4) - (113 .4)) + (53 .2) + (73 .2) + (93 .2) + (113 .2)) (define-animation anim:bomb-uh-oh - (54 .4) - (74 .4) - (94 .4) - (114 .4)) + (54 .1) + (74 .1) + (94 .1) + (114 .1)) (define particles (make-particle-pool 512 tileset))