From cd5317d1375d6e4efc901b807b9f52f52460699b Mon Sep 17 00:00:00 2001 From: Useroth Date: Sun, 28 Apr 2019 15:49:00 +0200 Subject: [PATCH] Fixed katana jaunt not working on dark tiles. --- code/datums/dash_weapon.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/dash_weapon.dm b/code/datums/dash_weapon.dm index 03badb2069..a870ecae66 100644 --- a/code/datums/dash_weapon.dm +++ b/code/datums/dash_weapon.dm @@ -32,7 +32,7 @@ if(!IsAvailable()) return var/turf/T = get_turf(target) - if(target in view(user.client.view, get_turf(user))) + if(target in view(user.client.view, user)) var/obj/spot1 = new phaseout(get_turf(user), user.dir) user.forceMove(T) playsound(T, dash_sound, 25, 1)