diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-04 19:24:10 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | daf592c048be381ac9ca6187d523e5ec22e2e37c (patch) | |
tree | 9a6b85d5ed5da15146b0b20659a53ce6639e7f99 /rules.js | |
parent | ba995143cb96254870557c2503e473d20084ae57 (diff) | |
download | nevsky-daf592c048be381ac9ca6187d523e5ec22e2e37c.tar.gz |
Fix Legate mustering lord not at his seat.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3580,7 +3580,8 @@ states.papal_legate_active = { // Seat of a Ready Lord without rolling if (is_lord_ready(lord)) { - gen_action_lord(lord) + if (is_lord_seat(lord, here)) + gen_action_lord(lord) } // Seat of a Lord on the Calendar |