diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5609,6 +5609,8 @@ states.propose_subsidy_to = { prompt(`Subsidy contract between ${power_name[from]} and who?`) for (let to of (is_two_player() ? all_minor_powers : all_powers)) { if (from !== to && is_allied_power(from, to)) { + if (to === P_SAXONY && is_saxony_neutral()) + continue if (is_controlled_power(player, from) || is_controlled_power(player, to)) gen_action_power(to) } @@ -5689,7 +5691,7 @@ function may_create_subsidy() { if (is_two_player()) { let major = coop_major_power(game.power) if (major === P_PRAGMATIC || major === P_AUSTRIA) - return is_saxony_austrian() + return is_saxony_austrian_ally() } return true } |