summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw-engine/src/main/kotlin/org/luxons/sevenwonders/engine/Game.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-engine/src/main/kotlin/org/luxons/sevenwonders/engine/Game.kt b/sw-engine/src/main/kotlin/org/luxons/sevenwonders/engine/Game.kt
index b9daf53f..da3ae5c7 100644
--- a/sw-engine/src/main/kotlin/org/luxons/sevenwonders/engine/Game.kt
+++ b/sw-engine/src/main/kotlin/org/luxons/sevenwonders/engine/Game.kt
@@ -97,7 +97,7 @@ class Game internal constructor(
private fun determineAction(hand: List<HandCard>, board: Board): Action = when {
endOfGameReached() -> when {
- board.hasSpecial(SpecialAbility.COPY_GUILD) -> determineCopyGuildAction(board)
+ board.hasSpecial(SpecialAbility.COPY_GUILD) && board.copiedGuild == null -> determineCopyGuildAction(board)
else -> Action.WAIT
}
hand.size == 1 && board.hasSpecial(SpecialAbility.PLAY_LAST_CARD) -> Action.PLAY_LAST
bgstack15