Merge pull request #13125 from phil235/NoDoubleChemHandling

Fixes human having two handle_chemicals_in_body() procs.
This commit is contained in:
Cheridan
2015-11-20 17:29:12 -06:00
+2 -5
View File
@@ -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()