Fixed an oversight with RAD_ABSORB and collapsing.

Conflicts:
	code/modules/mob/living/carbon/human/life.dm
This commit is contained in:
Zuhayr
2014-06-26 22:00:52 -04:00
committed by ZomgPonies
parent 28a1e35f80
commit 64aa4104fc
+6 -4
View File
@@ -314,10 +314,12 @@ var/global/list/brutefireloss_overlays = list("1" = image("icon" = 'icons/mob/sc
if (radiation)
if (radiation > 100)
Weaken(10)
if(!lying)
src << "\red You feel weak."
emote("collapse")
radiation = 100
if(!(species.flags & RAD_ABSORB))
Weaken(10)
if(!lying)
src << "\red You feel weak."
emote("collapse")
if (radiation < 0)
radiation = 0