From fd177b12004cb23350faaf32dcceb1bd8bde2ad0 Mon Sep 17 00:00:00 2001 From: GGGuenni Date: Fri, 12 Mar 2021 12:43:14 +0100 Subject: [PATCH] remove transient (#3688) since it not only blocks serialization it also blocks deserialization --- core/src/com/unciv/logic/map/TileInfo.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/logic/map/TileInfo.kt b/core/src/com/unciv/logic/map/TileInfo.kt index f978d0fd60..98e2d8acbd 100644 --- a/core/src/com/unciv/logic/map/TileInfo.kt +++ b/core/src/com/unciv/logic/map/TileInfo.kt @@ -53,7 +53,7 @@ open class TileInfo { lateinit var baseTerrain: String val terrainFeatures: ArrayList = ArrayList() - @Transient // So it won't be serialized from now on + //@Transient // So it won't be serialized from now on @Deprecated(message = "Since 3.13.7 - gets replaced by terrainFeatures") var terrainFeature: String? = null get() = terrainFeatures.firstOrNull()