From dd683fa0810d5e715a73c779c937a56ea7e23681 Mon Sep 17 00:00:00 2001 From: KasparoVy Date: Wed, 13 Dec 2017 21:20:19 -0500 Subject: [PATCH] Comment body-bloodying out until it gets fixed. "So, there's a bit of a bug with the blood system- specifically bloody_body. It doesn't always transfer the color of the blood correctly, for no apparent reason." - Tigercat2000 --- code/modules/projectiles/projectile.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index dfbcdf935b8..71ac935153b 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -97,7 +97,8 @@ if(istype(H)) for(var/mob/living/carbon/human/M in step_over) //Bloody the mobs who're infront of the spray. M.bloody_hands(H) - M.bloody_body(H) + /* Uncomment when bloody_body stops randomly not transferring blood colour. + M.bloody_body(H) */ var/organ_hit_text = "" if(L.has_limbs)