From 7c69e555fdb862efbd94a88e3d3de23388d1455b Mon Sep 17 00:00:00 2001 From: Anuken Date: Wed, 24 Apr 2024 20:17:16 -0400 Subject: [PATCH] Allow ram stance for any ground unit --- core/src/mindustry/type/UnitType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/type/UnitType.java b/core/src/mindustry/type/UnitType.java index 06d9f24e1f..2b50ff09fe 100644 --- a/core/src/mindustry/type/UnitType.java +++ b/core/src/mindustry/type/UnitType.java @@ -850,7 +850,7 @@ public class UnitType extends UnlockableContent implements Senseable{ if(stances.length == 0){ if(canAttack){ Seq seq = Seq.with(UnitStance.stop, UnitStance.shoot, UnitStance.holdFire, UnitStance.pursueTarget, UnitStance.patrol); - if(crushDamage > 0){ + if(!flying){ seq.add(UnitStance.ram); } stances = seq.toArray(UnitStance.class);