summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt
index dd8595eb..a7171afc 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt
@@ -20,8 +20,8 @@ private enum class HandAction(
val icon: IconName
) {
PLAY("PLAY", MoveType.PLAY, "play"),
- PLAY_FREE("Play as this age's free card", MoveType.PLAY_FREE, "play"),
- PLAY_FREE_DISCARDED("Play discarded card", MoveType.PLAY_FREE_DISCARDED, "play"),
+ PLAY_FREE("Play as this age's free card", MoveType.PLAY_FREE, "star"),
+ PLAY_FREE_DISCARDED("Play discarded card", MoveType.PLAY_FREE_DISCARDED, "star"),
COPY_GUILD("Copy this guild card", MoveType.COPY_GUILD, "duplicate")
}
bgstack15