summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-07-12 00:10:02 +0200
committerTor Andersson <tor@ccxvii.net>2023-07-12 00:10:02 +0200
commit38d7fc6c332f41052e77c23a84e39affde286745 (patch)
tree07573cf4e1a54f089692377f79b3f44587eb08de /rules.js
parenta864001a2bd10f0aecdd615ea60e4dd259e6947a (diff)
downloadtime-of-crisis-38d7fc6c332f41052e77c23a84e39affde286745.tar.gz
Allow Quaestor in breakaway provinces.
... they can have an effect if pretender is legitimized.
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 c4c02b3..448d7a0 100644
--- a/rules.js
+++ b/rules.js
@@ -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) {