Skip to content

Commit 98a53c5

Browse files
committed
fix log message for killer tomato becoming tomato
1 parent 225d3c9 commit 98a53c5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/actors/killer-tomato.fnl

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636

3737
(fn kt.on-death [s actor]
3838
(when (< (love.math.random) 0.2)
39-
(dungeon.spawn-actor s :tomato actor.pos))
40-
(dungeon.log (.. "The Killer Tomato became docile!")))
39+
(do
40+
(dungeon.spawn-actor s :tomato actor.pos)
41+
(dungeon.log "The Killer Tomato became docile!"))))
4142

4243
kt

0 commit comments

Comments
 (0)