From 28efcd9f22b37a459fe4613afc03e67c2e8fcfd4 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sat, 19 Jul 2014 15:54:47 -0400 Subject: [PATCH] Test to make alt-click be usable at more than 1 tile away --- 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 99d992639e1..821f1543793 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -247,7 +247,7 @@ /atom/proc/AltClick(var/mob/user) var/turf/T = get_turf(src) - if(T && T.Adjacent(user)) + if(T) if(user.listed_turf == T) user.listed_turf = null else