fixed onos charge getting stuck

This commit is contained in:
pierow 2021-02-24 15:17:41 -05:00
parent 0c18bffed4
commit ad8a003a00

View file

@ -805,7 +805,12 @@ void IN_AttackUp(void)
{
KeyUp( &in_attack );
in_cancel = 0;
//IN_Attack2Up();
// Attack2up only for onos so it can end +attack onos charges. Attack2up for all causes blink and leap to cancel if you release attack while blinking or leaping.
if (gViewPort)
{
if (gHUD.GetHUDUser3() == AVH_USER3_ALIEN_PLAYER5)
IN_Attack2Up();
}
}
void IN_AttackDownForced(void)