From 38a037edb359a6bdcd6995e655a879a2f71d462d Mon Sep 17 00:00:00 2001 From: MagmaRam Date: Wed, 12 Oct 2016 15:59:18 -0500 Subject: [PATCH] Optimization tweak, credit to Yoshax --- code/modules/organs/blood.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/organs/blood.dm b/code/modules/organs/blood.dm index c8c495f6736..3169d692c4e 100644 --- a/code/modules/organs/blood.dm +++ b/code/modules/organs/blood.dm @@ -127,7 +127,7 @@ var/const/BLOOD_VOLUME_SURVIVE = 40 var/blood_max = 0 var/blood_loss_divisor = 30 //lower factor = more blood loss //This 30 is the "baseline" of a cut in the "vital" regions (head and torso). - for(var/obj/item/organ/external/temp in organs) + for(var/obj/item/organ/external/temp in bad_external_organs) if(!(temp.status & ORGAN_BLEEDING) || (temp.robotic >= ORGAN_ROBOT)) continue for(var/datum/wound/W in temp.wounds)