Minor weapon fixes

This commit is contained in:
Anuken
2020-07-02 23:19:44 -04:00
parent f4a7108382
commit efa8d8a0d7
2 changed files with 4 additions and 31 deletions

View File

@@ -84,6 +84,7 @@ abstract class WeaponsComp implements Teamc, Posc, Rotc{
Weapon weapon = mount.weapon;
mount.reload = Math.max(mount.reload - Time.delta(), 0);
//flip weapon shoot side for alternating weapons at half reload
if(weapon.otherSide != -1 && weapon.alternate && mount.side == weapon.flipSprite &&
mount.reload + Time.delta() > weapon.reload/2f && mount.reload <= weapon.reload/2f){
mounts[weapon.otherSide].side = !mounts[weapon.otherSide].side;