From 8386e07d6ae507d06c35f73e5cf66fe5fcf61a1d Mon Sep 17 00:00:00 2001 From: rockdtben Date: Mon, 26 Dec 2011 18:19:17 +0000 Subject: [PATCH] Fixed a minor detail. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2824 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/verbs/suicide.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm index 93069bf64cb..5cc53f18768 100644 --- a/code/game/verbs/suicide.dm +++ b/code/game/verbs/suicide.dm @@ -149,7 +149,7 @@ suiciding = 1 viewers(src) << "\red [src] is thrashing wildly! It looks like \he's trying to commit suicide." //put em at -175 - adjustOxyLoss(max(100 - getFireLoss() - getBruteLoss() - getOxyLoss())) + adjustOxyLoss(max(100 - getFireLoss() - getBruteLoss() - getOxyLoss()), 0) updatehealth()