summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index db7e2e1..9006bf0 100644
--- a/rules.js
+++ b/rules.js
@@ -2427,7 +2427,7 @@ function resolve_final_bid() {
for (const c of game.selected_cards[f]) {
player_bid += cards[c].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);
}
@@ -2791,11 +2791,11 @@ function resolve_effect(effect, source) {
}
function win_final_bid(faction_id) {
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, glory) {
- 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!`);
}
function draw_card(deck) {
clear_undo();