From 86b4548d11ce415074e7c59eb71a1d384318f891 Mon Sep 17 00:00:00 2001 From: 9kgsofrice <65415105+9kgsofrice@users.noreply.github.com> Date: Sat, 12 Dec 2020 18:11:15 +0000 Subject: [PATCH] kept the old one for now (#3414) --- core/src/com/unciv/logic/civilization/CivInfoStats.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/com/unciv/logic/civilization/CivInfoStats.kt b/core/src/com/unciv/logic/civilization/CivInfoStats.kt index a40eaad92c..ca2e8564e3 100644 --- a/core/src/com/unciv/logic/civilization/CivInfoStats.kt +++ b/core/src/com/unciv/logic/civilization/CivInfoStats.kt @@ -81,7 +81,9 @@ class CivInfoStats(val civInfo: CivilizationInfo){ // Inca unique according to https://civilization.fandom.com/wiki/Incan_%28Civ5%29 if (civInfo.hasUnique("50% Maintenance costs reduction")) transportationUpkeep /= 2 - if (civInfo.hasUnique("Maintenance on roads & railroads reduced by 33%, +2 gold from all trade routes")) + if (civInfo.hasUnique("Maintenance on roads & railroads reduced by 33%") + //presume we want to deprecate the old one at some point? + ||civInfo.hasUnique("Maintenance on roads & railroads reduced by 33%, +2 gold from all trade routes")) transportationUpkeep = (transportationUpkeep * 2 / 3f).toInt() return transportationUpkeep }