From a666fa445b7df89bd6a96bdebad1a90f4351de6b Mon Sep 17 00:00:00 2001 From: skoglol <33292112+kriskog@users.noreply.github.com> Date: Thu, 7 Nov 2019 17:22:09 +0100 Subject: [PATCH] Alt clicking inside bag wont show turf tab (#47597) * No more turf view. * turfs --- code/_onclick/click.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index f2f65f91288..f8d9ebbbab9 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -343,7 +343,7 @@ /atom/proc/AltClick(mob/user) SEND_SIGNAL(src, COMSIG_CLICK_ALT, user) var/turf/T = get_turf(src) - if(T && user.TurfAdjacent(T)) + if(T && (isturf(loc) || isturf(src)) && user.TurfAdjacent(T)) user.listed_turf = T user.client.statpanel = T.name