From 311c4c2ed847b2bffd519665f37db23677d41a98 Mon Sep 17 00:00:00 2001 From: Juliana Sims Date: Wed, 22 May 2024 15:07:20 -0400 Subject: [PATCH] Ensure player cannot walk on electric switches --- 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 9d327a5..9e1593e 100644 --- a/modules/game/actors.scm +++ b/modules/game/actors.scm @@ -185,7 +185,7 @@ (define on? (spawn ^cell)) (define timer (spawn ^cell)) (match-lambda* - (('type) 'switch) + (('type) 'electric-switch) (('position) position) (('tick grid-info) #f) (('post-tick grid-info) #f)