mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-14 09:48:12 +07:00
Clearer "owned" resource
This commit is contained in:
@ -297,7 +297,7 @@ Introduction to [nation] =
|
|||||||
Declare war on [nation] =
|
Declare war on [nation] =
|
||||||
Luxury resources =
|
Luxury resources =
|
||||||
Strategic resources =
|
Strategic resources =
|
||||||
Owned: [amountOwned] =
|
Owned by you: [amountOwned] =
|
||||||
|
|
||||||
# Nation picker
|
# Nation picker
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ class TradePopup(worldScreen: WorldScreen): Popup(worldScreen){
|
|||||||
fun getOfferText(offer:TradeOffer): String {
|
fun getOfferText(offer:TradeOffer): String {
|
||||||
var tradeText = offer.getOfferText()
|
var tradeText = offer.getOfferText()
|
||||||
if (offer.type == TradeType.Luxury_Resource || offer.type == TradeType.Strategic_Resource)
|
if (offer.type == TradeType.Luxury_Resource || offer.type == TradeType.Strategic_Resource)
|
||||||
tradeText += "\n" + "Owned: [${ourResources[offer.name]}]".tr()
|
tradeText += "\n" + "Owned by you: [${ourResources[offer.name]}]".tr()
|
||||||
return tradeText
|
return tradeText
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user