From c1410d15f878a82444159ae6974540ab2e5ea3f0 Mon Sep 17 00:00:00 2001 From: phil235 Date: Fri, 20 Nov 2015 00:21:53 +0100 Subject: [PATCH] Fixes human having two handle_chemicals_in_body() procs. --- code/modules/mob/living/carbon/human/life.dm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 47eea854d4d..d12dd3a6c20 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -91,10 +91,6 @@ if(!dna || !dna.species.handle_mutations_and_radiation(src)) ..() -/mob/living/carbon/human/handle_chemicals_in_body() - if(reagents) - reagents.metabolize(src, can_overdose=1) - /mob/living/carbon/human/breathe() if(!dna.species.breathe(src)) ..() @@ -258,7 +254,8 @@ /mob/living/carbon/human/handle_chemicals_in_body() - ..() + if(reagents) + reagents.metabolize(src, can_overdose=1) dna.species.handle_chemicals_in_body(src) /mob/living/carbon/human/handle_vision()