diff --git a/core/src/com/unciv/logic/trade/TradeOffer.kt b/core/src/com/unciv/logic/trade/TradeOffer.kt index 41657cef2f..6a97ceef20 100644 --- a/core/src/com/unciv/logic/trade/TradeOffer.kt +++ b/core/src/com/unciv/logic/trade/TradeOffer.kt @@ -42,8 +42,8 @@ data class TradeOffer(val name: String, val type: TradeType, var amount: Int = 1 else -> name }.tr() - if (type.numberType == TradeTypeNumberType.Simple || name == Constants.researchAgreement) offerText += " ($amount)" - else if (type.numberType == TradeTypeNumberType.Gold) offerText += " ($amount)" + if (type.numberType == TradeTypeNumberType.Simple || type.numberType == TradeTypeNumberType.Gold) offerText += " ($amount)" + else if (name == Constants.researchAgreement) offerText += " (-$amount${Fonts.gold})" if (duration > 0) offerText += "\n" + duration + Fonts.turn