From 8400960fc6e4b953068ea2b5f2d69d68373c8512 Mon Sep 17 00:00:00 2001 From: Ater Ignis Date: Wed, 6 Feb 2013 15:20:03 +0400 Subject: [PATCH] allright, my fault on this line --- code/modules/DetectiveWork/footprints_and_rag.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/DetectiveWork/footprints_and_rag.dm b/code/modules/DetectiveWork/footprints_and_rag.dm index fd1f6a391d7..5f8918c9074 100644 --- a/code/modules/DetectiveWork/footprints_and_rag.dm +++ b/code/modules/DetectiveWork/footprints_and_rag.dm @@ -1,4 +1,3 @@ - /mob var/bloody_hands = 0 @@ -11,8 +10,6 @@ var/transfer_blood = 0 var/mob/living/carbon/human/bloody_hands_mob - - proc/blood_incompatible(donor,receiver) if(!donor || !receiver) return 0 var @@ -20,7 +17,7 @@ proc/blood_incompatible(donor,receiver) receiver_antigen = copytext(receiver,1,lentext(receiver)) donor_rh = (findtext(donor,"+")>0) receiver_rh = (findtext(receiver,"+")>0) - if(donor_rh!=receiver_rh) return 1 + if(donor_rh && !receiver_rh) return 1 switch(receiver_antigen) if("A") if(donor_antigen != "A" && donor_antigen != "O") return 1