summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/org/luxons/sevenwonders/game/api/Action.java6
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.");
bgstack15