From 5f6db366b6f770f64011addc1cb56ac204207ec2 Mon Sep 17 00:00:00 2001 From: KasparoVy Date: Wed, 14 Mar 2018 19:37:21 -0400 Subject: [PATCH] Revises living_powers.dm Hide Logic Now matches the proc in human_powers. --- code/modules/mob/living/living_powers.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.")