This commit is contained in:
YueR 2019-09-12 17:38:30 +08:00
parent 178c10c87f
commit a05563e0e0
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@
German:"[cityName] wurde gegründet!"
Dutch:"[cityName] is gesticht!"
Spanish:"¡[cityName] ha sido fundada!"
Simplified_Chinese:"[cityName]被发现!"
Simplified_Chinese:"已经建立了城市--[cityName]!"
Portuguese:"[cityName] foi fundada!"
Japanese:"[cityName]が設立されました!"
}

View File

@ -56,7 +56,7 @@ class CivInfoTransientUpdater(val civInfo: CivilizationInfo){
for (otherCiv in viewedCivs.filterNot { it == civInfo || it.isBarbarian() })
if (!civInfo.diplomacy.containsKey(otherCiv.civName)) {
civInfo.meetCivilization(otherCiv)
civInfo.addNotification("We have encountered [${otherCiv.civName}]!".tr(), null, Color.GOLD)
civInfo.addNotification("We have encountered ["+otherCiv.civName+"]!", null, Color.GOLD)
}
}
}