diff --git a/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt b/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt index c5454bc68d..791d5d276e 100644 --- a/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt +++ b/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt @@ -251,7 +251,7 @@ class UnitMovementAlgorithms(val unit:MapUnit) { fun headTowards(destination: TileInfo): TileInfo { val destinationTileThisTurn = getTileToMoveToThisTurn(destination) moveToTile(destinationTileThisTurn) - return destinationTileThisTurn + return unit.currentTile } /** This is performance-heavy - use as last resort, only after checking everything else! */