diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4892,7 +4892,7 @@ states.legitimize_claim = { prompt("Gain Legacy: Remove seat of power and breakaway markers in your provinces.") view.color = POPULACE for (let where = 1; where < 12; ++where) - if (is_own_province(where) && is_seat_of_power(where) || is_breakaway(where)) + if (is_own_province(where) && (is_seat_of_power(where) || is_breakaway(where))) gen_action_region(where) }, region(where) { |