Merge pull request #11104 from Verkister/patch-72

Fixes organs in belly squirting blood on the floor
This commit is contained in:
Aronai Sieyes
2021-07-16 13:40:46 -04:00
committed by Chompstation Bot
parent 1be5570337
commit 2c7d0cf851

View File

@@ -177,7 +177,7 @@ var/list/organ_cache = list()
if(!owner && reagents)
var/datum/reagent/blood/B = locate(/datum/reagent/blood) in reagents.reagent_list
if(B && prob(40))
if(B && prob(40) && !isbelly(loc)) //VOREStation Edit
reagents.remove_reagent("blood",0.1)
blood_splatter(src,B,1)
if(config.organs_decay && decays) damage += rand(1,3)