From b8aba8d00c1deffabba6cdf7ce5afff849c049d2 Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 20 Sep 2024 11:31:49 -0500 Subject: [PATCH] fix killer tomato log crash (#82) --- 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