From 72b917ca1f75477f47146730eee6140dd3061d91 Mon Sep 17 00:00:00 2001 From: SpacedOutChicken <58439827+SpacedOutChicken@users.noreply.github.com> Date: Wed, 3 Feb 2021 21:42:12 -0700 Subject: [PATCH] Add "Land" as possible input to tile-related uniques (#3574) * no message * Revert "no message" This reverts commit 9ece60bd583a02e80d2c4886dceb1e5d3e9996a9. * Renamed Haka War Dance effect to Intimidation, to make it more applicable to non-Maori Warrior units. * no message * Parameterized civUnique for extra experience from combat * Update build.gradle.kts * Update BattleDamage.kt * Update Policies.json * Update Battle.kt * Fully parameterized nationwide XP gain * New parameterized uniques for border expansion - "-[]% Gold cost of acquiring tiles []" and "-[]% Culture cost of acquiring tiles []" * Parameterized uniques for acquiring new tiles via either culture or gold * Parameterizing expansion unique - improved calculation method * Improved parameterization for border expansion uniques * Add "Land" as possible input to tile-related uniques --- core/src/com/unciv/logic/map/TileInfo.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/com/unciv/logic/map/TileInfo.kt b/core/src/com/unciv/logic/map/TileInfo.kt index a2d9707e1f..0e2403ddb3 100644 --- a/core/src/com/unciv/logic/map/TileInfo.kt +++ b/core/src/com/unciv/logic/map/TileInfo.kt @@ -355,6 +355,7 @@ open class TileInfo { || improvement == filter // || resource == filter // TODO uncomment in next version || filter == "Water" && isWater + || filter == "Land" && isLand } fun hasImprovementInProgress() = improvementInProgress != null