diff --git a/core/src/com/unciv/logic/map/tile/Tile.kt b/core/src/com/unciv/logic/map/tile/Tile.kt index ae15b86863..71741734f2 100644 --- a/core/src/com/unciv/logic/map/tile/Tile.kt +++ b/core/src/com/unciv/logic/map/tile/Tile.kt @@ -58,8 +58,8 @@ open class Tile : IsPartOfGameInfoSerialization { } roadOwner = city.civ.civName // only when taking control, otherwise last owner } else if (roadStatus != RoadStatus.None && owningCity != null) { - // previous tile owner still owns road, add to tracker - owningCity!!.civ.neutralRoads.add(this.position) + // Razing City! Remove owner + roadOwner = "" } owningCity = city isCityCenterInternal = getCity()?.location == position