diff --git a/code/modules/mob/living/living_powers.dm b/code/modules/mob/living/living_powers.dm index 40bdcb55904..d2c2d72e4e8 100644 --- a/code/modules/mob/living/living_powers.dm +++ b/code/modules/mob/living/living_powers.dm @@ -6,9 +6,9 @@ if(stat == DEAD || paralysis || weakened || stunned || restrained()) return - if(layer != HIDING_LAYER) - layer = HIDING_LAYER //Just above cables with their 2.44 - src << text("You are now hiding.") - else + if(layer == HIDING_LAYER) layer = MOB_LAYER src << text("You have stopped hiding.") + else + layer = HIDING_LAYER //Just above cables with their 2.44 + src << text("You are now hiding.")