summaryrefslogtreecommitdiff
path: root/sw-common-model
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-11 16:03:22 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-11 16:03:22 +0100
commitc6172b613a8f0c8ab5b56e7a3adc3d59c724aea3 (patch)
treee75addcd08c24995dbe4c6d6ad92aec67398ba06 /sw-common-model
parentFix board summaries (again!) (diff)
downloadseven-wonders-c6172b613a8f0c8ab5b56e7a3adc3d59c724aea3.tar.gz
seven-wonders-c6172b613a8f0c8ab5b56e7a3adc3d59c724aea3.tar.bz2
seven-wonders-c6172b613a8f0c8ab5b56e7a3adc3d59c724aea3.zip
Fix pulsing red (remove incorrect preparedMove field)
Diffstat (limited to 'sw-common-model')
-rw-r--r--sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt
index aff8b313..a1b3cb4e 100644
--- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt
+++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/Moves.kt
@@ -37,7 +37,6 @@ data class PlayerTurnInfo(
val table: TableState,
val action: Action,
val hand: List<HandCard>?,
- val preparedMove: PlayedMove?,
val neighbourGuildCards: List<HandCard>,
val discardedCards: List<HandCard>?, // only present when the player can actually see them
val scoreBoard: ScoreBoard? = null,
bgstack15