diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-26 10:24:26 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-26 10:24:26 +0200 |
commit | d26ddc1801a99310dee78e6d0fdc9d7b3bb44d06 (patch) | |
tree | 7376f35b326aa780413735bca523cc150742d144 /sw-common-model | |
parent | Fix race condition bewteen next turn and prepared move (diff) | |
download | seven-wonders-d26ddc1801a99310dee78e6d0fdc9d7b3bb44d06.tar.gz seven-wonders-d26ddc1801a99310dee78e6d0fdc9d7b3bb44d06.tar.bz2 seven-wonders-d26ddc1801a99310dee78e6d0fdc9d7b3bb44d06.zip |
Improve "say ready" message
Diffstat (limited to 'sw-common-model')
-rw-r--r-- | sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt index 8b339788..d5503bc9 100644 --- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt +++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt @@ -11,7 +11,7 @@ import org.luxons.sevenwonders.model.score.ScoreBoard import org.luxons.sevenwonders.model.wonders.WonderBuildability enum class Action(val message: String) { - SAY_READY("Say when you're ready to get your next hand"), + SAY_READY("Click 'READY' when you are ready to receive your next hand."), PLAY("Pick the card you want to play or discard."), PLAY_2("Pick the first card you want to play or discard. Note that you have the ability to play these 2 last cards. You will choose how to play the last one during your next turn."), PLAY_LAST("You have the special ability to play your last card. Choose how you want to play it."), |