From 471c8728a05220458cfe092d7bb6cd817bacab27 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 21 Oct 2023 23:04:12 -0400 Subject: [PATCH] Let units without weapons patrol --- 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 44a39d9350..a8623a6d65 100644 --- a/core/src/mindustry/type/UnitType.java +++ b/core/src/mindustry/type/UnitType.java @@ -845,7 +845,7 @@ public class UnitType extends UnlockableContent implements Senseable{ } stances = seq.toArray(UnitStance.class); }else{ - stances = new UnitStance[]{UnitStance.stop}; + stances = new UnitStance[]{UnitStance.stop, UnitStance.patrol}; } }