Allow ram stance for any ground unit

This commit is contained in:
Anuken 2024-04-24 20:17:16 -04:00
parent 7d3c94de9b
commit 7c69e555fd

View File

@ -850,7 +850,7 @@ public class UnitType extends UnlockableContent implements Senseable{
if(stances.length == 0){
if(canAttack){
Seq<UnitStance> 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);