diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 4688e348b8..0eeca2eaf7 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -355,7 +355,7 @@ else user.listed_turf = T user.client.statpanel = T.name - return + user.Stat() //responsive ui pls /mob/proc/TurfAdjacent(turf/T) return T.Adjacent(src) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 5d3d21f082..297f788001 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -623,6 +623,8 @@ continue if(overrides.len && (A in overrides)) continue + if(A.IsObscured()) + continue statpanel(listed_turf.name, null, A)