diff --git a/sources/Zeds/Nice/NiceZombieShiver.uc b/sources/Zeds/Nice/NiceZombieShiver.uc index 2a879b5..9492af5 100644 --- a/sources/Zeds/Nice/NiceZombieShiver.uc +++ b/sources/Zeds/Nice/NiceZombieShiver.uc @@ -313,6 +313,7 @@ simulated function Tick(float Delta) //can't teleport if set on fire function bool CanTeleport() { + if (HeadHealth <= 0) return false; return !bFlashTeleporting && !bOnFire && Physics == PHYS_Walking && Level.TimeSeconds > TeleportBlockTime && LastFlashTime + 7.5 < Level.TimeSeconds && !bIsStunned; } diff --git a/sources/Zeds/Nice/NiceZombieShiverBase.uc b/sources/Zeds/Nice/NiceZombieShiverBase.uc index 812047e..5e4c365 100644 --- a/sources/Zeds/Nice/NiceZombieShiverBase.uc +++ b/sources/Zeds/Nice/NiceZombieShiverBase.uc @@ -91,8 +91,8 @@ defaultproperties WaterSpeed=100.000000 AccelRate=1024.000000 JumpZ=340.000000 - HealthMax=650.000000 - Health=350 + HealthMax=250.000000 + Health=250 MenuName="Shiver" MovementAnims(0)="ClotWalk" AmbientSound=SoundGroup'ScrnZedPack_S.Shiver.ShiverIdleGroup'