From 54dd93997de3a79790bc60e9e47fc6c1df0b9f2c Mon Sep 17 00:00:00 2001 From: DelZeta Date: Thu, 20 Aug 2015 20:24:15 -0700 Subject: [PATCH] Useful procs are useful. --- code/modules/mob/living/carbon/human/life.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 4ca19fa57ba..0cadf6ddff0 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -951,9 +951,7 @@ spawn(rand(20,50)) client.dir = 1 - hallucination -= 2 - if(hallucination < 0) - hallucination = 0 + hallucination = max(0, hallucination - 2) else for(var/atom/a in hallucinations) qdel(a)