From 21e85642106816bfb874cf5515e944bd582af6c6 Mon Sep 17 00:00:00 2001 From: Xhuis Date: Mon, 13 Apr 2015 21:15:14 -0400 Subject: [PATCH] One more define --- code/game/gamemodes/shadowling/shadowling.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/shadowling/shadowling.dm b/code/game/gamemodes/shadowling/shadowling.dm index 54b8e9ec411..c1804312258 100644 --- a/code/game/gamemodes/shadowling/shadowling.dm +++ b/code/game/gamemodes/shadowling/shadowling.dm @@ -1,4 +1,5 @@ #define LIGHT_DAM_THRESHOLD 4 +#define LIGHT_HEAL_THRESHOLD 2 #define LIGHT_DAMAGE_TAKEN 10 /* @@ -239,7 +240,7 @@ Made by Xhuis H.take_overall_damage(0, LIGHT_DAMAGE_TAKEN) H << "The light burns you!" H << 'sound/weapons/sear.ogg' - else if (light_amount < 2) + else if (light_amount < LIGHT_HEAL_THRESHOLD) H.heal_overall_damage(5,5) H.adjustToxLoss(-5) H.adjustBrainLoss(-25) //gibbering shadowlings are hilarious but also bad to have