diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-05-04 22:25:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-05-04 22:26:46 +0200 |
commit | 8a9df63f920180f51c89e0eccea9880758faf158 (patch) | |
tree | 52a62f1b98fd794e7f6197f9d934a2635a53acb5 | |
parent | a29b0162503248109344009351041dffa80d3418 (diff) | |
download | richard-iii-8a9df63f920180f51c89e0eccea9880758faf158.tar.gz |
Fix last_area (don't try to recruit into Pool, etc).
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |