diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-28 12:23:19 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-28 13:34:57 +0200 |
commit | 8c13af72e52fbef61801e36ee99d3a0732d0d416 (patch) | |
tree | 763bc5c79026a4a52320ec85fb82f7ef347cf087 /sw-common-model/src | |
parent | Fix Olympia wonder effect declaration (diff) | |
download | seven-wonders-8c13af72e52fbef61801e36ee99d3a0732d0d416.tar.gz seven-wonders-8c13af72e52fbef61801e36ee99d3a0732d0d416.tar.bz2 seven-wonders-8c13af72e52fbef61801e36ee99d3a0732d0d416.zip |
Clarify message for unavailable resources
Diffstat (limited to 'sw-common-model/src')
-rw-r--r-- | sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt index 13a9042d..96027612 100644 --- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt +++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt @@ -63,7 +63,7 @@ enum class PlayabilityLevel(val message: String) { REQUIRES_HELP("requires buying resources"), MISSING_REQUIRED_GOLD("not enough gold"), MISSING_GOLD_FOR_RES("not enough gold to buy resources"), - UNAVAILABLE_RESOURCES("neighbours don't have the missing resources"), + UNAVAILABLE_RESOURCES("missing resources that even neighbours don't have"), INCOMPATIBLE_WITH_BOARD("card already on the board") } |