From bf6c23cacda9cdec8f50996a63aa1e7d7d77e0e1 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 28 Jul 2023 17:59:03 +0200 Subject: Fix entering capital directly with Force March. --- about.html | 2 +- rules.js | 23 +++++++++++++---------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/about.html b/about.html index 883b006..942575e 100644 --- a/about.html +++ b/about.html @@ -13,7 +13,7 @@ Game Design by Wray Ferrell and Brad Johnson.

Copyright © 2017 -GMT Games, LLC. +GMT Games, LLC.
Cover art by Rodger B. MacGowan © 2017. diff --git a/rules.js b/rules.js index 7af1777..20457fa 100644 --- a/rules.js +++ b/rules.js @@ -2220,7 +2220,7 @@ states.take_actions = { if (get_general_location(game.selected_general) === AVAILABLE) create_army(where, false) else - move_army_to(game.selected_general, where) + move_army_to(game.selected_general, where, false) } }, @@ -2229,8 +2229,9 @@ states.take_actions = { if (get_general_location(game.selected_general) === AVAILABLE) create_army(where, true) else if (get_general_location(game.selected_general) !== where) - move_army_to(game.selected_general, where) - enter_capital() + move_army_to(game.selected_general, where, true) + else + enter_capital() }, } @@ -2883,12 +2884,11 @@ states.move_army_at_sea = { }, region(to) { push_undo() - move_army_to(game.selected_general, to) + move_army_to(game.selected_general, to, false) }, capital(to) { push_undo() - move_army_to(game.selected_general, to) - enter_capital() + move_army_to(game.selected_general, to, true) }, card(c) { push_undo() @@ -2897,7 +2897,7 @@ states.move_army_at_sea = { }, } -function move_army_to(who, to) { +function move_army_to(who, to, to_capital) { let from = get_general_location(who) log("Move Army from %" + from + " to %" + to + ".") @@ -2909,6 +2909,8 @@ function move_army_to(who, to) { if (is_sea(to)) game.state = "move_army_at_sea" + else if (to_capital) + enter_capital() else resume_take_actions() } @@ -3542,14 +3544,15 @@ states.force_march = { region(where) { push_undo() - move_army_to(game.selected_general, where) + move_army_to(game.selected_general, where, false) }, capital(where) { push_undo() if (get_general_location(game.selected_general) !== where) - move_army_to(game.selected_general, where) - enter_capital() + move_army_to(game.selected_general, where, true) + else + enter_capital() }, enter() { -- cgit v1.2.3