From 90051ebe5c5d85b06e2f3d31f2e109eeeb438e03 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Thu, 21 May 2020 22:18:28 +0300 Subject: [PATCH] Rivers no longer disappear on 'next turn' --- core/src/com/unciv/logic/map/TileInfo.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/com/unciv/logic/map/TileInfo.kt b/core/src/com/unciv/logic/map/TileInfo.kt index b6e30fb22f..6870671b83 100644 --- a/core/src/com/unciv/logic/map/TileInfo.kt +++ b/core/src/com/unciv/logic/map/TileInfo.kt @@ -62,6 +62,9 @@ open class TileInfo { toReturn.improvementInProgress = improvementInProgress toReturn.roadStatus = roadStatus toReturn.turnsToImprovement = turnsToImprovement + toReturn.hasBottomLeftRiver = hasBottomLeftRiver + toReturn.hasBottomRightRiver = hasBottomRightRiver + toReturn.hasBottomRiver = hasBottomRiver return toReturn }