1.0.3 release:

- Fix Biorifle and Impact Hammer still being able to fire if player died while charging.
 - Fix Minigun not shooting bullets immediately on refire.
 - Fix Minigun playing unwind animation on death.
This commit is contained in:
Marisa the Magician 2019-10-29 13:28:17 +01:00
commit 1f5778177a
4 changed files with 14 additions and 2 deletions

View file

@ -52,6 +52,11 @@ Class ImpactHammer : UTWeapon
}
action void A_ChargeUp()
{
if ( Health <= 0 )
{
player.SetPSprite(-9999,ResolveState("Null"));
return;
}
invoker.chargesize += .75/TICRATE;
invoker.count += 1./TICRATE;
if ( invoker.count > .2 )
@ -249,7 +254,7 @@ Class ImpactHammer : UTWeapon
Release:
IMPF A 0
{
A_Overlay(-9999,null);
A_Overlay(-9999,"Null");
if ( self is 'UTPlayer' )
UTPlayer(self).PlayAttacking3();
A_FireBlast();