Spectator and City-State civs are no logner considered as having 'discovered' a natural wonder
This commit is contained in:
parent
d090b0567c
commit
88d72f0f39
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ class CivInfoTransientUpdater(val civInfo: CivilizationInfo) {
|
|||
civInfo.addNotification("We have discovered [" + tile.naturalWonder + "]!", tile.position, Color.GOLD)
|
||||
|
||||
var goldGained = 0
|
||||
val discoveredNaturalWonders = civInfo.gameInfo.civilizations.filter { it != civInfo }
|
||||
val discoveredNaturalWonders = civInfo.gameInfo.civilizations.filter { it != civInfo && it.isMajorCiv() }
|
||||
.flatMap { it.naturalWonders }
|
||||
if (tile.containsUnique("Grants 500 Gold to the first civilization to discover it")
|
||||
&& !discoveredNaturalWonders.contains(tile.naturalWonder!!)) {
|
||||
|
|
Loading…
Reference in a new issue