From 5cf2281db6834f57fd650ed2071904d81fb6e633 Mon Sep 17 00:00:00 2001 From: Hubblenaut Date: Fri, 17 Oct 2014 21:04:08 +0200 Subject: [PATCH] Hotfix for broken damage reading --- code/modules/mob/living/carbon/human/human_damage.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 970fc062c0b..0c21befe295 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -141,7 +141,7 @@ /mob/living/carbon/human/getCloneLoss() if(species.flags & (IS_SYNTHETIC | NO_SCAN)) cloneloss = 0 - ..() + return ..() /mob/living/carbon/human/setCloneLoss(var/amount) if(species.flags & (IS_SYNTHETIC | NO_SCAN)) @@ -188,7 +188,7 @@ /mob/living/carbon/human/getOxyLoss() if(species.flags & NO_BREATHE) oxyloss = 0 - ..() + return ..() /mob/living/carbon/human/adjustOxyLoss(var/amount) if(species.flags & NO_BREATHE) @@ -205,7 +205,7 @@ /mob/living/carbon/human/getToxLoss() if(species.flags & NO_POISON) toxloss = 0 - ..() + return ..() /mob/living/carbon/human/adjustToxLoss(var/amount) if(species.flags & NO_POISON)