From a36bfd609bd0de7e767677c864c97fa2c3a410d5 Mon Sep 17 00:00:00 2001 From: Sam Pagenkopf Date: Thu, 19 Sep 2024 17:12:48 -0500 Subject: [PATCH] fix killer tomato log crash --- src/actors/killer-tomato.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actors/killer-tomato.fnl b/src/actors/killer-tomato.fnl index b11bbe3..5b7fca1 100644 --- a/src/actors/killer-tomato.fnl +++ b/src/actors/killer-tomato.fnl @@ -38,6 +38,6 @@ (when (< (love.math.random) 0.2) (do (dungeon.spawn-actor s :tomato actor.pos) - (dungeon.log "The Killer Tomato became docile!")))) + (dungeon.log s "The Killer Tomato became docile!")))) kt