Index: ps/trunk/binaries/data/mods/public/simulation/components/UnitAI.js =================================================================== --- ps/trunk/binaries/data/mods/public/simulation/components/UnitAI.js +++ ps/trunk/binaries/data/mods/public/simulation/components/UnitAI.js @@ -5565,6 +5565,8 @@ { this.order.data.lastPos = order.lastPos; this.order.data.force = order.force; + if (order.force) + this.orderQueue = [this.order]; return; } @@ -5650,6 +5652,8 @@ { this.order.data.lastPos = order.lastPos; this.order.data.force = order.force; + if (order.force) + this.orderQueue = [this.order]; return; } @@ -5687,6 +5691,7 @@ this.order.data.target === target) { this.order.data.force = true; + this.orderQueue = [this.order]; return; } @@ -5910,6 +5915,7 @@ this.order.data.autocontinue === autocontinue) { this.order.data.force = true; + this.orderQueue = [this.order]; return; }