diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2017-01-14 01:59:29 +0100 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2017-01-14 01:59:29 +0100 |
commit | ff59ddad10f4eb2099e0b1ab238b5d8ca0d4c1db (patch) | |
tree | eb6cf423154c496518c2e6105359c57925e9caa7 /src | |
parent | Add COPY_GUILD effect support (diff) | |
download | seven-wonders-ff59ddad10f4eb2099e0b1ab238b5d8ca0d4c1db.tar.gz seven-wonders-ff59ddad10f4eb2099e0b1ab238b5d8ca0d4c1db.tar.bz2 seven-wonders-ff59ddad10f4eb2099e0b1ab238b5d8ca0d4c1db.zip |
Reword action hint texts
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/luxons/sevenwonders/game/api/Action.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/luxons/sevenwonders/game/api/Action.java b/src/main/java/org/luxons/sevenwonders/game/api/Action.java index 9cd98291..88e392f9 100644 --- a/src/main/java/org/luxons/sevenwonders/game/api/Action.java +++ b/src/main/java/org/luxons/sevenwonders/game/api/Action.java @@ -1,9 +1,9 @@ package org.luxons.sevenwonders.game.api; public enum Action { - PLAY("Pick the card you want to play."), - PLAY_2("Pick the card you want to play first. 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("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."), PICK_NEIGHBOR_GUILD("Choose a Guild card (purple) that you want to copy from one of your neighbours."), WAIT("Please wait for other players to perform extra actions."); |