diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4403,9 +4403,10 @@ function end_remove_isolated_british_pc_segment() { function goto_end_phase() { if (has_flag(F_FRENCH_ALLIANCE_TRIGGERED) && !has_flag(F_EUROPEAN_WAR)) { + log("=b European War") set_flag(F_EUROPEAN_WAR) game.count = 2 - game.active = P_AMERICA + game.active = P_BRITAIN game.state = "european_war" set_flag(F_RESHUFFLE) return @@ -4437,6 +4438,7 @@ states.european_war = { }, space(where) { push_undo() + log("Removed CU from S" + where + ".") remove_british_cu(where, 1) if (--game.count === 0) game.state = "european_war_confirm" |