Meat hook fix. Beam runtime fix (#13867)

This commit is contained in:
farie82
2020-07-21 03:33:23 -06:00
committed by GitHub
parent bd27e9f897
commit 9111a64af9
2 changed files with 4 additions and 2 deletions
@@ -383,7 +383,10 @@
var/mob/living/L = target
if(!L.anchored)
L.visible_message("<span class='danger'>[L] is snagged by [firer]'s hook!</span>")
var/old_density = L.density
L.density = FALSE // Ensures the hook does not hit the target multiple times
L.forceMove(get_turf(firer))
L.density = old_density
/obj/item/projectile/hook/Destroy()
QDEL_NULL(chain)