From d6e28180a163090934883b8e12189b6c5f9be463 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Tue, 22 Oct 2019 00:34:25 -0500 Subject: [PATCH] if this doesn't work, I won't be fixing it --- code/game/atoms.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 3bce2bca38..4869874501 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -386,7 +386,6 @@ return TRUE //some new blood DNA was added - //to add blood from a mob onto something, and transfer their dna info /atom/proc/add_mob_blood(mob/living/M) var/list/blood_dna = M.get_blood_dna_list() @@ -402,10 +401,10 @@ return transfer_blood_dna(blood_dna, diseases) /obj/item/add_blood_DNA(list/blood_dna, list/datum/disease/diseases) - if(!..()) - return FALSE + . = ..() + if(!.) + return add_blood_overlay() - return TRUE //we applied blood to the item /obj/item/proc/add_blood_overlay() if(!blood_DNA.len)