From 2cef773393464a54100410010414a8a5b1386c62 Mon Sep 17 00:00:00 2001 From: "quartz235@gmail.com" Date: Thu, 23 Feb 2012 09:47:50 +0000 Subject: [PATCH] Aliens can no longer hide under vents/pumps git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3174 316c924e-a436-60f5-8080-3fe189b3f50e --- code/ATMOSPHERICS/components/unary/unary_base.dm | 2 +- code/modules/mob/living/carbon/alien/larva/powers.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/ATMOSPHERICS/components/unary/unary_base.dm b/code/ATMOSPHERICS/components/unary/unary_base.dm index 9c434ea91d5..b755071487e 100644 --- a/code/ATMOSPHERICS/components/unary/unary_base.dm +++ b/code/ATMOSPHERICS/components/unary/unary_base.dm @@ -1,7 +1,7 @@ /obj/machinery/atmospherics/unary dir = SOUTH initialize_directions = SOUTH - layer = 2.45 + layer = TURF_LAYER+0.1 var/datum/gas_mixture/air_contents diff --git a/code/modules/mob/living/carbon/alien/larva/powers.dm b/code/modules/mob/living/carbon/alien/larva/powers.dm index f1b1453f293..19bf6c551af 100644 --- a/code/modules/mob/living/carbon/alien/larva/powers.dm +++ b/code/modules/mob/living/carbon/alien/larva/powers.dm @@ -48,8 +48,8 @@ set desc = "Allows to hide beneath tables or certain items. Toggled on or off." set category = "Alien" - if (layer != TURF_LAYER) - layer = TURF_LAYER + if (layer != TURF_LAYER+0.2) + layer = TURF_LAYER+0.2 src << text("\green You are now hiding.") for(var/mob/O in oviewers()) if ((O.client && !( O.blinded )))