diff --git a/android/build.gradle b/android/build.gradle index bffd9d27..3f07d413 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,8 +21,8 @@ android { applicationId "com.unciv.app" minSdkVersion 14 targetSdkVersion 28 - versionCode 219 - versionName "2.14.1" + versionCode 220 + versionName "2.14.1.patch1" } // Had to add this crap for Travis to build, it wanted to sign the app diff --git a/core/src/com/unciv/logic/GameInfo.kt b/core/src/com/unciv/logic/GameInfo.kt index 008d1ab7..d2d78b46 100644 --- a/core/src/com/unciv/logic/GameInfo.kt +++ b/core/src/com/unciv/logic/GameInfo.kt @@ -143,7 +143,10 @@ class GameInfo { // As of 2.14.1, changed Machu Pichu to Machu Picchu val oldMachuName = "Machu Pichu" val newMachuName = "Machu Picchu" - cityConstructions.builtBuildings.replaceAll { if (it == oldMachuName) newMachuName else it } + if(cityConstructions.builtBuildings.contains(oldMachuName)){ + cityConstructions.builtBuildings.remove(oldMachuName) + cityConstructions.builtBuildings.add(newMachuName) + } if (cityConstructions.currentConstruction == oldMachuName) cityConstructions.currentConstruction = newMachuName if (cityConstructions.inProgressConstructions.containsKey(oldMachuName)) { diff --git a/extraImages/Feature graphic.png b/extraImages/Feature graphic.png index 77febb00..4ca60ab1 100644 Binary files a/extraImages/Feature graphic.png and b/extraImages/Feature graphic.png differ