diff options
author | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-28 13:03:36 +0200 |
---|---|---|
committer | Joffrey Bion <joffrey.bion@booking.com> | 2020-05-28 13:34:57 +0200 |
commit | 4178ba9700ffd6619f995482a369bd5133276e2e (patch) | |
tree | 497223513f61a7162d78213e1c9fe7de16064e25 /sw-common-model | |
parent | Clarify message for unavailable resources (diff) | |
download | seven-wonders-4178ba9700ffd6619f995482a369bd5133276e2e.tar.gz seven-wonders-4178ba9700ffd6619f995482a369bd5133276e2e.tar.bz2 seven-wonders-4178ba9700ffd6619f995482a369bd5133276e2e.zip |
Fix production alternative duplicates
Having twice the same choice wasn't supported so far.
This can happen with Alexandria's bonuses (4 primary resources, or 3 secondary)
associated to the yellow Market/Caravansery cards.
Resolves:
https://github.com/joffrey-bion/seven-wonders/issues/19
Diffstat (limited to 'sw-common-model')
-rw-r--r-- | sw-common-model/src/commonMain/kotlin/org/luxons/sevenwonders/model/boards/Boards.kt | 2 |
1 files changed, 1 insertions, 1 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 68a85898..333883b6 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 @@ -29,7 +29,7 @@ data class Requirements( @Serializable data class Production( val fixedResources: List<CountedResource>, - val alternativeResources: Set<Set<ResourceType>> + val alternativeResources: List<Set<ResourceType>> ) @Serializable |