summaryrefslogtreecommitdiff
path: root/sw-common-model
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-05-28 12:23:19 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-05-28 13:34:57 +0200
commit8c13af72e52fbef61801e36ee99d3a0732d0d416 (patch)
tree763bc5c79026a4a52320ec85fb82f7ef347cf087 /sw-common-model
parentFix Olympia wonder effect declaration (diff)
downloadseven-wonders-8c13af72e52fbef61801e36ee99d3a0732d0d416.tar.gz
seven-wonders-8c13af72e52fbef61801e36ee99d3a0732d0d416.tar.bz2
seven-wonders-8c13af72e52fbef61801e36ee99d3a0732d0d416.zip
Clarify message for unavailable resources
Diffstat (limited to 'sw-common-model')
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/cards/Cards.kt2
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")
}
bgstack15