summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.ts b/rules.ts
index 5867403..08a6a4f 100644
--- a/rules.ts
+++ b/rules.ts
@@ -2986,7 +2986,7 @@ function resolve_final_bid() {
for (const c of game.selected_cards[f]) {
player_bid += (cards[c] as PlayerCard).strength;
}
- log(`${faction_player_map[f]} bids ${player_bid}`);
+ log(`${faction_player_map[f]} bid ${player_bid} cards`);
if (player_bid === highest_bid) {
winners.push(f);
} else if (player_bid > highest_bid) {
@@ -3461,12 +3461,12 @@ function resolve_effect(effect: Effect, source?: EffectSource): EngineNode {
function win_final_bid(faction_id: FactionId) {
log_br();
- log(`${faction_player_map[faction_id]} wins the Final Bid`);
+ log(`${faction_player_map[faction_id]} won the Final Bid`);
game.glory.push(faction_id);
}
function win_game(player: Player, glory: number) {
- game_over(player, `${player} wins the game with a total of ${glory} Glory!`);
+ game_over(player, `${player} won the game with a total of ${glory} Glory!`);
}
// #endregion