diff --git a/sources/Zeds/Nice/NiceZombieStalker.uc b/sources/Zeds/Nice/NiceZombieStalker.uc index 0a75dde..3e2c054 100644 --- a/sources/Zeds/Nice/NiceZombieStalker.uc +++ b/sources/Zeds/Nice/NiceZombieStalker.uc @@ -214,7 +214,7 @@ function RemoveHead() } simulated function PlayDying(class DamageType, vector HitLoc) { - Super.PlayDying(DamageType,HitLoc); + Super(NiceMonster).PlayDying(DamageType,HitLoc); if(bUnlit) bUnlit=!bUnlit; LocalKFHumanPawn = none; diff --git a/sources/Zeds/Nice/NiceZombieTeslaHusk.uc b/sources/Zeds/Nice/NiceZombieTeslaHusk.uc index 4362308..030c45f 100644 --- a/sources/Zeds/Nice/NiceZombieTeslaHusk.uc +++ b/sources/Zeds/Nice/NiceZombieTeslaHusk.uc @@ -266,7 +266,7 @@ function Died(Controller Killer, class damageType, vector HitLocatio } simulated event PlayDying(class DamageType, vector HitLoc) { - super.PlayDying(DamageType, HitLoc); + super(NiceMonster).PlayDying(DamageType, HitLoc); if ( DecapitationSparks != none ) DecapitationSparks.Destroy(); AmbientSound = none; }