From 3524c23528d0bb161cdcb2e1a153c6fdea10c574 Mon Sep 17 00:00:00 2001 From: Incoming Date: Fri, 28 Jun 2013 14:10:13 -0400 Subject: [PATCH] Succumb() now calls Death() instead of modifying stat directly --- code/modules/mob/living/living.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index d3e7133fc63..574171d02c3 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -12,7 +12,7 @@ src.adjustOxyLoss(src.health + 200) src.health = 100 - src.getOxyLoss() - src.getToxLoss() - src.getFireLoss() - src.getBruteLoss() src << "\blue You have given up life and succumbed to death." - src.stat = DEAD + death() /mob/living/proc/updatehealth()