diff --git a/android/assets/jsons/Civ V - Gods & Kings/TileImprovements.json b/android/assets/jsons/Civ V - Gods & Kings/TileImprovements.json index ce2ec32eb4..14e2462483 100644 --- a/android/assets/jsons/Civ V - Gods & Kings/TileImprovements.json +++ b/android/assets/jsons/Civ V - Gods & Kings/TileImprovements.json @@ -266,7 +266,7 @@ { "name": "City ruins", "terrainsCanBeBuiltOn": ["Land"], - "uniques": ["Unpillagable", "Unbuildable", "Automated workers will replace"], + "uniques": ["Unpillagable", "Unbuildable", "Will be replaced by automated workers"], "civilopediaText": [{"text":"A bleak reminder of the destruction wreaked by War"}] }, { diff --git a/android/assets/jsons/Civ V - Vanilla/TileImprovements.json b/android/assets/jsons/Civ V - Vanilla/TileImprovements.json index 11dc7022ad..dab2c98199 100644 --- a/android/assets/jsons/Civ V - Vanilla/TileImprovements.json +++ b/android/assets/jsons/Civ V - Vanilla/TileImprovements.json @@ -256,7 +256,7 @@ { "name": "City ruins", "terrainsCanBeBuiltOn": ["Land"], - "uniques": ["Unpillagable", "Unbuildable", "Automated workers will replace"], + "uniques": ["Unpillagable", "Unbuildable", "Will be replaced by automated workers"], "civilopediaText": [{"text":"A bleak reminder of the destruction wreaked by War"}] }, { diff --git a/core/src/com/unciv/models/ruleset/unique/UniqueType.kt b/core/src/com/unciv/models/ruleset/unique/UniqueType.kt index c5b38c22c2..7facb2f15d 100644 --- a/core/src/com/unciv/models/ruleset/unique/UniqueType.kt +++ b/core/src/com/unciv/models/ruleset/unique/UniqueType.kt @@ -582,7 +582,7 @@ enum class UniqueType(val text: String, vararg targets: UniqueTarget, val flags: PillageYieldRandom("Pillaging this improvement yields approximately [stats]", UniqueTarget.Improvement), PillageYieldFixed("Pillaging this improvement yields [stats]", UniqueTarget.Improvement), Irremovable("Irremovable", UniqueTarget.Improvement), - AutomatedWorkersWillReplace("Automated workers will replace", UniqueTarget.Improvement), + AutomatedWorkersWillReplace("Will be replaced by automated workers", UniqueTarget.Improvement), //endregion ///////////////////////////////////////// region CONDITIONALS /////////////////////////////////////////