diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-08-12 01:45:05 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-08-12 01:45:05 +0200 |
commit | 07ea64c3b9e5a9a6ac4831baf542d44c820b9148 (patch) | |
tree | 977a4a3267f011d6bcf60c3724c0b7f1cbba3e1a /sw-common-model | |
parent | Change font to Acme for token counts (diff) | |
download | seven-wonders-07ea64c3b9e5a9a6ac4831baf542d44c820b9148.tar.gz seven-wonders-07ea64c3b9e5a9a6ac4831baf542d44c820b9148.tar.bz2 seven-wonders-07ea64c3b9e5a9a6ac4831baf542d44c820b9148.zip |
Display only victory military points on the board next to victory tokens
The count displayed used to be the total combined number of points including defeat tokens,
but this is a bit confusing as we can see both types of tokens next to each other.
Diffstat (limited to 'sw-common-model')
-rw-r--r-- | sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt index 333883b6..e080b929 100644 --- a/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt +++ b/sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt @@ -35,6 +35,7 @@ data class Production( @Serializable data class Military( val nbShields: Int, + val victoryPoints: Int, val totalPoints: Int, val nbDefeatTokens: Int ) |