From e3320d9cb1de1d7cc94d3d04bc38630e8c9191f3 Mon Sep 17 00:00:00 2001 From: "ryantennessee@yahoo.com" Date: Wed, 9 Nov 2011 17:02:55 +0000 Subject: [PATCH] Changed a few numbers for the health scanner hud where it had been not programmed to show an icon state for the hud when target was between 15 and 20 hp. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2504 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/clothing/glasses/hud.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index 5639faa0a96..5cbe90800c2 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -28,9 +28,9 @@ return "health60" if(30 to 50) return "health40" - if(20 to 30) + if(18 to 30) return "health25" - if(5 to 15) + if(5 to 18) return "health10" if(1 to 5) return "health1"