From 98a53c57e52a83d63fa43bb59e9713c3cbad7b0f Mon Sep 17 00:00:00 2001 From: Sam Pagenkopf Date: Thu, 19 Sep 2024 15:13:52 -0500 Subject: [PATCH] fix log message for killer tomato becoming tomato --- src/actors/killer-tomato.fnl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/actors/killer-tomato.fnl b/src/actors/killer-tomato.fnl index 14cb543..b11bbe3 100644 --- a/src/actors/killer-tomato.fnl +++ b/src/actors/killer-tomato.fnl @@ -36,7 +36,8 @@ (fn kt.on-death [s actor] (when (< (love.math.random) 0.2) - (dungeon.spawn-actor s :tomato actor.pos)) - (dungeon.log (.. "The Killer Tomato became docile!"))) + (do + (dungeon.spawn-actor s :tomato actor.pos) + (dungeon.log "The Killer Tomato became docile!")))) kt