mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-13 17:28:57 +07:00
Removed 'please' from Civ demands to make them more demand-y
This commit is contained in:
@ -212,12 +212,16 @@ Current leader(s): [leaders], you: [yourScore] =
|
|||||||
[civInfo] with [value] [valueType] =
|
[civInfo] with [value] [valueType] =
|
||||||
|
|
||||||
Demands =
|
Demands =
|
||||||
|
# Will be deprecated in a few versions
|
||||||
Please don't settle new cities near us. =
|
Please don't settle new cities near us. =
|
||||||
|
Don't settle new cities near us. =
|
||||||
Very well, we shall look for new lands to settle. =
|
Very well, we shall look for new lands to settle. =
|
||||||
We shall do as we please. =
|
We shall do as we please. =
|
||||||
We noticed your new city near our borders, despite your promise. This will have....implications. =
|
We noticed your new city near our borders, despite your promise. This will have....implications. =
|
||||||
|
|
||||||
|
# Will be deprecated in a few versions
|
||||||
Please don't spread your religion to us. =
|
Please don't spread your religion to us. =
|
||||||
|
Don't spread your religion to us. =
|
||||||
Very well, we shall spread our faith elsewhere. =
|
Very well, we shall spread our faith elsewhere. =
|
||||||
We noticed you have continued spreading your faith, despite your promise. This will have...consequences. =
|
We noticed you have continued spreading your faith, despite your promise. This will have...consequences. =
|
||||||
|
|
||||||
|
@ -79,11 +79,11 @@ class CapitalConnectionsFinder(private val civInfo: Civilization) {
|
|||||||
|
|
||||||
private fun checkHarbor(cityToConnectFrom: City) {
|
private fun checkHarbor(cityToConnectFrom: City) {
|
||||||
check(
|
check(
|
||||||
cityToConnectFrom,
|
cityToConnectFrom,
|
||||||
transportType = if(cityToConnectFrom.wasPreviouslyReached(railroad,null)) harborFromRailroad else harborFromRoad,
|
transportType = if(cityToConnectFrom.wasPreviouslyReached(railroad,null)) harborFromRailroad else harborFromRoad,
|
||||||
overridingTransportType = harborFromRailroad,
|
overridingTransportType = harborFromRailroad,
|
||||||
tileFilter = { tile -> tile.isWater },
|
tileFilter = { tile -> tile.isWater },
|
||||||
cityFilter = { city -> city.civ == civInfo && city.containsHarbor() && !city.isBlockaded() } // use only own harbors
|
cityFilter = { city -> city.civ == civInfo && city.containsHarbor() && !city.isBlockaded() } // use only own harbors
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user