summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-01-24 15:15:40 +0100
committerTor Andersson <tor@ccxvii.net>2023-02-18 13:02:39 +0100
commit95d14a958d55996f6762f24204e1373f11c1edf7 (patch)
tree88ec54fae97e51f00e65eb54974906f0a5e424c1
parent2ac56fc8dd04108470720a123a4a306b7e5ae620 (diff)
downloadnevsky-95d14a958d55996f6762f24204e1373f11c1edf7.tar.gz
Discard Crusade only at onset of late winter.
-rw-r--r--rules.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index b1bf0e2..ef17ff4 100644
--- a/rules.js
+++ b/rules.js
@@ -10635,7 +10635,8 @@ function goto_advance_campaign() {
log_h1("Levy " + current_turn_name())
- if (current_season() === LATE_WINTER)
+ // First turns of late winter
+ if (current_turn() === 5 || current_turn() === 13)
goto_discard_crusade_late_winter()
else
goto_levy_arts_of_war()