summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-02-23 13:24:07 +0100
committerTor Andersson <tor@ccxvii.net>2025-02-23 13:24:34 +0100
commite6fb277ad5920229486f081e4b6738f9fb72d35a (patch)
tree0c3777d6f035a278c75032b7162132a978fd0484
parent5f65dc8cbd31212e46288e2f5af92d0451e4f3f8 (diff)
downloadplantagenet-e6fb277ad5920229486f081e4b6738f9fb72d35a.tar.gz
Fix who acts first in tides of war (disembarking step).HEADmaster
-rw-r--r--rules.js2
-rw-r--r--rules.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index 0f233ec..eedc4b0 100644
--- a/rules.js
+++ b/rules.js
@@ -7890,7 +7890,7 @@ function tow(n, what) {
return n;
}
function goto_tides_of_war() {
- set_active(BOTH);
+ set_active(P1);
log_h2_common("Tides of War");
let cities = count_favour(all_city_locales);
let towns = count_favour(all_town_locales);
diff --git a/rules.ts b/rules.ts
index c84788b..1fd8a33 100644
--- a/rules.ts
+++ b/rules.ts
@@ -9235,7 +9235,7 @@ function tow(n: number, what: string): number {
}
function goto_tides_of_war() {
- set_active(BOTH)
+ set_active(P1)
log_h2_common("Tides of War")