From 80f8c70e09656eba0f6facecf48ec557d889b527 Mon Sep 17 00:00:00 2001 From: cib Date: Mon, 9 Jan 2012 07:45:00 -0800 Subject: [PATCH] Band-aids and ointment work until 0 health, rather than 50 now. --- code/game/objects/items/weapons/medical.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/medical.dm b/code/game/objects/items/weapons/medical.dm index 0fcd35411e3..6c114d72e32 100644 --- a/code/game/objects/items/weapons/medical.dm +++ b/code/game/objects/items/weapons/medical.dm @@ -15,7 +15,7 @@ MEDICAL t_him = "her" user << "\red \The [M] is dead, you cannot help [t_him]!" return - if (M.health < 50) + if (M.health < 0) var/t_him = "it" if (M.gender == MALE) t_him = "him"