diff --git a/src/core/game/GameImpl.ts b/src/core/game/GameImpl.ts index 8dbb56835..91cf123ed 100644 --- a/src/core/game/GameImpl.ts +++ b/src/core/game/GameImpl.ts @@ -893,6 +893,7 @@ export class GameImpl implements Game { } removeUnit(u: Unit) { this.unitGrid.removeUnit(u); + this.planDrivenUnitIds.delete(u.id()); if (u.hasTrainStation()) { this._railNetwork.removeStation(u); }