diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-02-23 13:24:48 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-23 13:24:48 +0100 |
commit | 0fe8fe6853aa1340a16d95ff2483e70a2d7ee0db (patch) | |
tree | 5f0eafbcc65fb56b8d53d722949c3ef7612f0dc2 /rules.js | |
parent | e6fb277ad5920229486f081e4b6738f9fb72d35a (diff) | |
download | plantagenet-0fe8fe6853aa1340a16d95ff2483e70a2d7ee0db.tar.gz |
Use multi-active state instead of Both.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -3046,7 +3046,7 @@ function goto_levy_discard_events() { function goto_campaign_plan() { game.turn++; log_h1("Campaign " + current_turn_name()); - set_active(BOTH); + set_active([P1, P2]); game.state = "campaign_plan"; game.plan_y = []; game.plan_l = []; @@ -3094,11 +3094,11 @@ states.campaign_plan = { } }, end_plan(_, current) { - if (game.active === BOTH) { + if (game.active.length === 2) { if (current === YORK) - set_active(LANCASTER); + set_active([LANCASTER]); else - set_active(YORK); + set_active([YORK]); } else { end_campaign_plan(); @@ -11415,7 +11415,7 @@ exports.view = function (state, current) { if (game.state === "game_over") { view.prompt = game.victory; } - else if (current === "Observer" || (game.active !== current && game.active !== BOTH)) { + else if (game.active !== current && !game.active.includes(current)) { let inactive = states[game.state].inactive || game.state; view.prompt = `Waiting for ${game.active} \u2014 ${inactive}.`; } |