diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -2700,7 +2700,7 @@ states.damnatio_memoriae = { }, card(c) { push_undo() - log("Damnatio Memoriae.") + log_h3("Damnatio Memoriae.") set_add(game.used, c) play_card_event(c) }, @@ -3077,6 +3077,10 @@ states.replace_pretender_governor = { } function end_occupation_of_pretender_capital() { + if (game.combat) { + end_combat() + return + } log_br() resume_take_actions() } @@ -4523,8 +4527,7 @@ states.combat_victory = { } function goto_combat_victory() { - log_br() - log("RESULT") + log_h3("RESULT") let de = is_defender_eliminated() let ae = is_attacker_eliminated() if (de && ae) |