From 73d91610f0821bf33d0fe8c29cab303c43839243 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 14 Jan 2018 22:22:20 -0500 Subject: [PATCH] POLARIS: Hide higher planes from alt-turf menu Hides things from higher planes in the alt-examine menu. Too spooky! Fixes #2749 --- code/modules/mob/mob.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 5ea49ec1b9..b8513611a0 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -707,6 +707,8 @@ continue if(is_type_in_list(A, shouldnt_see)) continue + if(A.plane > plane) + continue stat(A)