From af13f405bd6d596fb07eb26f7f16ff91f220c6a8 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 13 Jun 2017 03:47:40 -0400 Subject: [PATCH] Fixes bloody footprints runtime (#28372) --- code/game/objects/effects/decals/cleanable/humans.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/decals/cleanable/humans.dm b/code/game/objects/effects/decals/cleanable/humans.dm index 50d79a07d6d..d7d510974c0 100644 --- a/code/game/objects/effects/decals/cleanable/humans.dm +++ b/code/game/objects/effects/decals/cleanable/humans.dm @@ -180,7 +180,7 @@ . += "You recognise the footprints as belonging to:\n" for(var/shoe in shoe_types) var/obj/item/clothing/shoes/S = shoe - . += "some [initial(S.name)] [bicon(S)]\n" + . += "some [initial(S.name)] [bicon(initial(S.icon))]\n" to_chat(user, .)