Fix cost for wedding

This commit is contained in:
Christoph Hagen
2021-12-22 14:54:31 +01:00
parent cfba0fe467
commit dbac55e15d
3 changed files with 14 additions and 0 deletions

View File

@ -61,6 +61,9 @@ struct EnglishGameSummarizer: GameSummarizer {
var components = [String]()
components.append("Game \(table.game.basicCost)")
if !table.isBettel {
if table.isHochzeit {
components.append("wedding")
}
if table.isSchwarz {
components.append("Schwarz")
} else if table.isSchneider {

View File

@ -61,6 +61,9 @@ struct GermanGameSummarizer: GameSummarizer {
var components = [String]()
components.append("Grundspiel \(table.game.basicCost)")
if !table.isBettel {
if table.isHochzeit {
components.append("Hochzeit")
}
if table.isSchwarz {
components.append("Schwarz")
} else if table.isSchneider {