From 6c42ea75189c52ac821cc663f3e763004d96657b Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 28 May 2025 01:09:24 -0400 Subject: [PATCH] - fix pointer mixup in whirlwind DoSpecialDamage() --- 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 d6ece9374..c904f207f 100644 --- a/wadsrc/static/zscript/actors/heretic/ironlich.zs +++ b/wadsrc/static/zscript/actors/heretic/ironlich.zs @@ -321,7 +321,7 @@ class Whirlwind : Actor } if (!(Level.maptime & 7)) { - target.DamageMobj (null, victim, 3, 'Melee'); + victim.DamageMobj (null, target, 3, 'Melee'); } return -1; }