diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-12 00:10:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-12 00:10:02 +0200 |
commit | 38d7fc6c332f41052e77c23a84e39affde286745 (patch) | |
tree | 07573cf4e1a54f089692377f79b3f44587eb08de | |
parent | a864001a2bd10f0aecdd615ea60e4dd259e6947a (diff) | |
download | time-of-crisis-38d7fc6c332f41052e77c23a84e39affde286745.tar.gz |
Allow Quaestor in breakaway provinces.
... they can have an effect if pretender is legitimized.
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3046,7 +3046,7 @@ states.castra = { function can_play_quaestor() { for (let where = 0; where < 12; ++where) - if (!has_quaestor(where) && !is_breakaway(where) && !is_seat_of_power(where) && is_own_province(where)) + if (!has_quaestor(where) && is_own_province(where)) return true return false } @@ -3061,7 +3061,7 @@ states.quaestor = { prompt("Quaestor: Choose a province you govern.") view.color = POPULACE for (let where = 0; where < 12; ++where) - if (!has_quaestor(where) && !is_breakaway(where) && !is_seat_of_power(where) && is_own_province(where)) + if (!has_quaestor(where) && is_own_province(where)) gen_action_region(where) }, region(where) { |