summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-05-04 22:25:02 +0200
committerTor Andersson <tor@ccxvii.net>2025-05-04 22:26:46 +0200
commit8a9df63f920180f51c89e0eccea9880758faf158 (patch)
tree52a62f1b98fd794e7f6197f9d934a2635a53acb5 /rules.js
parenta29b0162503248109344009351041dffa80d3418 (diff)
downloadrichard-iii-8a9df63f920180f51c89e0eccea9880758faf158.tar.gz
Fix last_area (don't try to recruit into Pool, etc).
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 8e86356..a694335 100644
--- a/rules.js
+++ b/rules.js
@@ -16,7 +16,7 @@ exports.roles = [ "York", "Lancaster" ]
const { CARDS, BLOCKS, AREAS, BORDERS, block_index, area_index } = require('./data')
const first_area = 6 // first real area (skip pools and seas)
-const last_area = AREAS.length - 4 // skip layout areas at end
+const last_area = AREAS.length - 5 // skip layout areas at end
const block_count = BLOCKS.length