diff options
Diffstat (limited to 'rules.js')
-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) { |