summaryrefslogtreecommitdiff
path: root/sw-ui/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'sw-ui/src/main')
-rw-r--r--sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt
index 3da63a38..9a9dc90f 100644
--- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt
+++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/PlayerPreparedCard.kt
@@ -46,7 +46,7 @@ private class PlayerPreparedCard(props: PlayerPreparedCardProps) : RComponent<Pl
title = if (cardBack == null) {
"${props.playerDisplayName} is still thinking…"
} else {
- "${props.playerDisplayName} has prepared his move"
+ "${props.playerDisplayName} is ready to play this turn"
}
}
if (cardBack != null) {
bgstack15