From b56c32fdc63569bb2a8f44d33afe606678695e05 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 17 Nov 2024 19:04:27 -0500 Subject: [PATCH] fix magic missile hitting the user if they move while casting it (#27383) --- code/datums/spells/projectile_spell.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/spells/projectile_spell.dm b/code/datums/spells/projectile_spell.dm index fd724b5019b2..07e83ec6686a 100644 --- a/code/datums/spells/projectile_spell.dm +++ b/code/datums/spells/projectile_spell.dm @@ -30,6 +30,7 @@ projectile.icon_state = proj_icon_state projectile.dir = get_dir(target, projectile) projectile.name = proj_name + projectile.firer = user var/current_loc = get_turf(projectile) for(var/i in 1 to proj_lifespan)