fix being stuck reloading if reload was held while shooting sg or gl

This commit is contained in:
pierow 2023-08-20 17:32:34 -04:00
parent cab8803828
commit c270808c43
2 changed files with 8 additions and 0 deletions

View file

@ -424,6 +424,10 @@ void AvHGrenadeGun::Reload(void)
}
}
}
else
{
this->m_fInSpecialReload = kSpecialReloadNone;
}
}
void AvHGrenadeGun::WeaponIdle(void)

View file

@ -242,6 +242,10 @@ void AvHReloadableMarineWeapon::Reload(void)
}
}
}
else
{
this->m_fInSpecialReload = kSpecialReloadNone;
}
}