summaryrefslogtreecommitdiff
path: root/rules.ts
diff options
context:
space:
mode:
Diffstat (limited to 'rules.ts')
-rw-r--r--rules.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/rules.ts b/rules.ts
index 1fd8a33..6e2c775 100644
--- a/rules.ts
+++ b/rules.ts
@@ -8,7 +8,7 @@ declare function require(name: string): any
declare let exports: any
type Side = "York" | "Lancaster"
-type Player = "York" | "Lancaster" | "Both" | "None"
+type Player = "York" | "Lancaster" | "None" | "Both" | string[]
type Card = number & { TAG: "Card" }
type Locale = number & { TAG: "Locale" }
type Lord = number & { TAG: "Lord" }
@@ -3736,7 +3736,7 @@ function goto_campaign_plan() {
log_h1("Campaign " + current_turn_name())
- set_active(BOTH)
+ set_active([ P1, P2 ])
game.state = "campaign_plan"
game.plan_y = []
game.plan_l = []
@@ -3788,11 +3788,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()
}
@@ -13142,7 +13142,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}.`
} else {