From 254dad3dd9628b07fbf1ef4e127fdf641a7037ae Mon Sep 17 00:00:00 2001 From: "baloh.matevz@gmail.com" Date: Fri, 21 Oct 2011 10:43:47 +0000 Subject: [PATCH] Guest commit for Urist, who doesn't have SVN. Fixed the default death hitpoints from 0 to -100, in case the configuration file (game_options.txt) goes missing. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2406 316c924e-a436-60f5-8080-3fe189b3f50e --- code/datums/configuration.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/configuration.dm b/code/datums/configuration.dm index b4e05b500dd..1016b55cd4e 100644 --- a/code/datums/configuration.dm +++ b/code/datums/configuration.dm @@ -44,7 +44,7 @@ //game_options.txt configs var/health_threshold_crit = 0 - var/health_threshold_dead = 0 + var/health_threshold_dead = -100 var/revival_pod_plants = 1 var/revival_cloning = 1