summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorteisuru <31881306+teisuru@users.noreply.github.com>2023-06-04 12:50:27 +0200
committerTor Andersson <tor@ccxvii.net>2023-12-10 18:16:54 +0100
commit20995be4afae6eaab84f5088cc2e24253d486dd3 (patch)
tree1b71f915a74f4858e98c36a76f337ac28eec008b /rules.js
parent646444e2f4b415511e50e216265c5a1cbcefd9c1 (diff)
downloadplantagenet-20995be4afae6eaab84f5088cc2e24253d486dd3.tar.gz
Fixed plan length each season
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules.js b/rules.js
index e81d37c..3058e12 100644
--- a/rules.js
+++ b/rules.js
@@ -776,10 +776,10 @@ function max_plan_length() {
switch (current_season()) {
case SUMMER:
return 7
+ case SPRING:
+ return 6
case WINTER:
return 4
- case SPRING:
- return 5
}
}