From 4899c3383f356d22e2c9d22ca2f4d1d7a4a47364 Mon Sep 17 00:00:00 2001 From: evan Date: Thu, 24 Apr 2025 12:45:47 -0700 Subject: [PATCH] remove transport ship embark delay --- src/core/execution/TransportShipExecution.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/core/execution/TransportShipExecution.ts b/src/core/execution/TransportShipExecution.ts index d9b001739..11c294b73 100644 --- a/src/core/execution/TransportShipExecution.ts +++ b/src/core/execution/TransportShipExecution.ts @@ -26,7 +26,6 @@ export class TransportShipExecution implements Execution { private mg: Game; private attacker: Player; private target: Player | TerraNullius; - private embarkDelay = 10; // TODO make private public path: TileRef[]; @@ -155,10 +154,6 @@ export class TransportShipExecution implements Execution { this.active = false; return; } - if (this.embarkDelay > 0) { - this.embarkDelay--; - return; - } if (ticks - this.lastMove < this.ticksPerMove) { return; }