From d7d18c7cc0cc12b57d5fa398e5a430c7e56ccc2c Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Mon, 26 May 2025 02:06:15 -0400 Subject: [PATCH] - whoops, missed renaming one of the variables in whirlwind.DoSpecialDamage() virtual --- wadsrc/static/zscript/actors/heretic/ironlich.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/heretic/ironlich.zs b/wadsrc/static/zscript/actors/heretic/ironlich.zs index f5d2b600d..d6ece9374 100644 --- a/wadsrc/static/zscript/actors/heretic/ironlich.zs +++ b/wadsrc/static/zscript/actors/heretic/ironlich.zs @@ -303,7 +303,7 @@ class Whirlwind : Actor { int randVal; - if (!target.bDontThrust) + if (!victim.bDontThrust) { victim.angle += Random2[WhirlwindDamage]() * (360 / 4096.); victim.Vel.X += Random2[WhirlwindDamage]() / 64.;