diff --git a/core/src/mindustry/ai/types/LogicAI.java b/core/src/mindustry/ai/types/LogicAI.java index 5987dc2bc7..8cd8eec938 100644 --- a/core/src/mindustry/ai/types/LogicAI.java +++ b/core/src/mindustry/ai/types/LogicAI.java @@ -40,6 +40,12 @@ public class LogicAI extends AIController{ private float lastMoveX, lastMoveY; private int lastPathId = 0; + // LogicAI state should not be reset after reading. + @Override + public boolean keepState(){ + return true; + } + @Override public void updateMovement(){ if(control == LUnitControl.pathfind){