More Quadravol adjustments.

This commit is contained in:
Mari the Deer 2022-08-17 01:21:38 +02:00
commit 2f22e89fc1
4 changed files with 67 additions and 6 deletions

View file

@ -397,10 +397,14 @@ Class SWWMWeapon : Weapon abstract
else demo.PlayMelee();
}
}
action void A_PlayerReload()
action void A_PlayerReload( bool bFast = false )
{
let demo = Demolitionist(player.mo);
if ( demo && (demo.Health > 0) ) demo.PlayReload();
if ( demo && (demo.Health > 0) )
{
if ( bFast ) demo.PlayFastReload();
else demo.PlayReload();
}
}
action void A_PlayerCheckGun()
{