From 1dd4e379200a8e8942335f2ec93b9900c7a3f6e5 Mon Sep 17 00:00:00 2001 From: Lucy Date: Tue, 10 Sep 2024 08:37:03 -0400 Subject: [PATCH] You can now bloodcrawl into/out of tomato smudges (#86565) ## About The Pull Request This makes tomato smudges on the floor valid for bloodcrawl. Pretty simple. ## Why It's Good For The Game Why not? It's funny, and ketchup = fake blood. ## Changelog :cl: add: Tomato smudges on the floor are now considered valid to bloodcrawl into and out of. /:cl: --- code/game/objects/effects/decals/cleanable/food.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/effects/decals/cleanable/food.dm b/code/game/objects/effects/decals/cleanable/food.dm index 23c266ecb5906..d612bd9e7f53e 100644 --- a/code/game/objects/effects/decals/cleanable/food.dm +++ b/code/game/objects/effects/decals/cleanable/food.dm @@ -10,6 +10,9 @@ icon_state = "tomato_floor1" random_icon_states = list("tomato_floor1", "tomato_floor2", "tomato_floor3") +/obj/effect/decal/cleanable/food/tomato_smudge/can_bloodcrawl_in() + return TRUE // why? why not. + /obj/effect/decal/cleanable/food/plant_smudge name = "plant smudge" desc = "Chlorophyll? More like borophyll!"