From 53f70608a2ef77e133c78ff75002730da58ed65f Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 5 Sep 2022 09:45:42 -0400 Subject: [PATCH] wizard can now hit forced crawlers with fireball (#18969) --- code/datums/spells/wizard.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/spells/wizard.dm b/code/datums/spells/wizard.dm index 2c62d4b2725..47ac310ffc7 100644 --- a/code/datums/spells/wizard.dm +++ b/code/datums/spells/wizard.dm @@ -379,6 +379,8 @@ var/obj/item/projectile/magic/fireball/FB = new fireball_type(user.loc) FB.current = get_turf(user) + FB.original = target + FB.firer = user FB.preparePixelProjectile(target, get_turf(target), user) FB.fire() user.newtonian_move(get_dir(U, T))