mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-24 14:49:23 +07:00
Spanish Civ is not production-ready, and natural wonders should be opt-in at the beginning
This commit is contained in:
@ -53,7 +53,7 @@ class NextTurnAutomation{
|
||||
otherCiv.addNotification("[${civInfo.civName}] has accepted your trade request", Color.GOLD)
|
||||
}
|
||||
else{
|
||||
otherCiv.addNotification("[${civInfo.civName}] has denied your trade request", Color.GOLD) // todo translation
|
||||
otherCiv.addNotification("[${civInfo.civName}] has denied your trade request", Color.GOLD)
|
||||
}
|
||||
}
|
||||
civInfo.tradeRequests.clear()
|
||||
|
@ -71,7 +71,7 @@ class CivInfoTransientUpdater(val civInfo: CivilizationInfo){
|
||||
|
||||
for (tile in viewedNaturalWonders) {
|
||||
if (!civInfo.naturalWonders.contains(tile.naturalWonder)) {
|
||||
civInfo.discoveryNaturalWonder(tile.naturalWonder!!)
|
||||
civInfo.discoverNaturalWonder(tile.naturalWonder!!)
|
||||
civInfo.addNotification("We have discovered [" + tile.naturalWonder + "]!", tile.position, Color.GOLD)
|
||||
|
||||
var goldGained = 0
|
||||
|
@ -260,7 +260,7 @@ class CivilizationInfo {
|
||||
UncivGame.Current.settings.addCompletedTutorialTask("Meet another civilization")
|
||||
}
|
||||
|
||||
fun discoveryNaturalWonder(naturalWonderName: String)
|
||||
fun discoverNaturalWonder(naturalWonderName: String)
|
||||
{
|
||||
naturalWonders.add(naturalWonderName)
|
||||
}
|
||||
|
@ -5,5 +5,5 @@ class MapParameters {
|
||||
var type = MapType.pangaea
|
||||
var radius = 20
|
||||
var noRuins = false
|
||||
var noNaturalWonders = false
|
||||
var noNaturalWonders = true
|
||||
}
|
Reference in New Issue
Block a user