Fix cost for wedding
This commit is contained in:
@ -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 {
|
||||
|
@ -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 {
|
||||
|
Reference in New Issue
Block a user