Skip to content

Commit

Permalink
Merge pull request #1193 from Metritutus/capital-elimination-fix
Browse files Browse the repository at this point in the history
Capital Star Elimination check fix
  • Loading branch information
SpacialCircumstances authored Oct 14, 2024
2 parents 05be783 + 04cb287 commit 6a9b733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/services/gameType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,6 @@ export default class GameTypeService {
}

isCapitalStarEliminationMode(game: Game) {
return this.isConquestMode(game) && game.settings.conquest.capitalStarElimination === 'enabled';
return game.settings.conquest.capitalStarElimination === 'enabled';
}
}

0 comments on commit 6a9b733

Please sign in to comment.