diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-07-13 00:23:10 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-07-13 00:23:10 +0200 |
commit | d8eb06fb7bcf7b6e2218a92aa9db1a5aef533faa (patch) | |
tree | fa6fa0662e108f6ae1b10ab27dd88745ae043f4f | |
parent | 596272f6fd44691ed1c893dcaf19c5498e389699 (diff) | |
download | plantagenet-d8eb06fb7bcf7b6e2218a92aa9db1a5aef533faa.tar.gz |
fix Sun in Splendour
-rw-r--r-- | rules.js | 4 | ||||
-rw-r--r-- | rules.ts | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -11018,7 +11018,7 @@ states.sun_in_splendour = { prompt() { view.prompt = "Sun in Splendour: Muster Edward IV at any friendly locale with no enemy lord."; for (let loc of all_locales) - if (is_friendly_locale(loc)) + if (is_friendly_locale(loc) && !has_enemy_lord(loc)) gen_action_locale(loc); }, locale(loc) { @@ -11037,7 +11037,7 @@ states.sun_in_splendour_now = { prompt() { view.prompt = "Sun in Splendour: Muster Edward IV at any friendly locale with no enemy lord."; for (let loc of all_locales) - if (is_friendly_locale(loc)) + if (is_friendly_locale(loc) && !has_enemy_lord(loc)) gen_action_locale(loc); }, locale(loc) { @@ -12691,7 +12691,7 @@ states.sun_in_splendour = { prompt() { view.prompt = "Sun in Splendour: Muster Edward IV at any friendly locale with no enemy lord." for (let loc of all_locales) - if (is_friendly_locale(loc)) + if (is_friendly_locale(loc) && !has_enemy_lord(loc)) gen_action_locale(loc) }, locale(loc) { @@ -12714,7 +12714,7 @@ states.sun_in_splendour_now = { prompt() { view.prompt = "Sun in Splendour: Muster Edward IV at any friendly locale with no enemy lord." for (let loc of all_locales) - if (is_friendly_locale(loc)) + if (is_friendly_locale(loc) && !has_enemy_lord(loc)) gen_action_locale(loc) }, locale(loc) { |