diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-28 14:20:25 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-28 14:34:31 +0200 |
commit | 7de909b8dcafac6691f3b3b48210d758b6c757e7 (patch) | |
tree | 38fd543a5b4a98cc6506c72f1533bd2ed61e598c | |
parent | Fix endless copy-guild loop (diff) | |
download | seven-wonders-7de909b8dcafac6691f3b3b48210d758b6c757e7.tar.gz seven-wonders-7de909b8dcafac6691f3b3b48210d758b6c757e7.tar.bz2 seven-wonders-7de909b8dcafac6691f3b3b48210d758b6c757e7.zip |
Change icons for special plays
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/Hand.kt | 4 |
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") } |