From 9436d218b42670dacd3a29b044888d4e8618853a Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Thu, 19 Dec 2019 03:59:57 -0700 Subject: [PATCH] thank you based ghomtainer (when) Co-Authored-By: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/game/objects/items/grenades/flashbang.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/objects/items/grenades/flashbang.dm b/code/game/objects/items/grenades/flashbang.dm index 50d1d94d05..9b46c87554 100644 --- a/code/game/objects/items/grenades/flashbang.dm +++ b/code/game/objects/items/grenades/flashbang.dm @@ -41,7 +41,6 @@ /obj/item/grenade/flashbang/proc/flash(mob/living/M, turf/source) if(M.stat == DEAD) //They're dead! return - var/distance = get_dist(get_turf(M, source)) + var/distance = get_dist(get_turf(M), source) if(M.flash_act(affect_silicon = 1)) M.Knockdown(max(200/max(1,distance), 60)) -