diff --git a/core/src/mindustry/type/UnitType.java b/core/src/mindustry/type/UnitType.java index 773fa35465..36d8112877 100644 --- a/core/src/mindustry/type/UnitType.java +++ b/core/src/mindustry/type/UnitType.java @@ -749,7 +749,7 @@ public class UnitType extends UnlockableContent implements Senseable{ if(crushDamage > 0){ stats.add(Stat.crushDamage, crushDamage * 60f * 5f, StatUnit.perSecond); } - + stats.add(Stat.targetsAir, targetAir); stats.add(Stat.targetsGround, targetGround); @@ -887,7 +887,7 @@ public class UnitType extends UnlockableContent implements Senseable{ if(flyingLayer < 0) flyingLayer = lowAltitude ? Layer.flyingUnitLow : Layer.flyingUnit; clipSize = Math.max(clipSize, lightRadius * 1.1f); - singleTarget = weapons.size <= 1 && !forceMultiTarget; + singleTarget |= weapons.size <= 1 && !forceMultiTarget; if(itemCapacity < 0){ itemCapacity = Math.max(Mathf.round((int)(hitSize * 4f), 10), 10);