diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-12-14 10:26:42 +0100 |
---|---|---|
committer | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-12-14 10:26:42 +0100 |
commit | 6f8e25441bbee2faf590a55295d35b670cc6cca5 (patch) | |
tree | 578dd38d0ab6717bf1da01ef23a18c48ffdd2e0a | |
parent | bed9a0ae25860dc90e4ac7aa96d142333867c010 (diff) | |
download | plantagenet-6f8e25441bbee2faf590a55295d35b670cc6cca5.tar.gz |
fix L31
-rw-r--r-- | play.js | 2 | ||||
-rw-r--r-- | rules.js | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -1692,7 +1692,7 @@ function on_update() { action_button("add_men_at_arms", "Add Men at Arms") // REMOVE INFLUENCE - action_button("remove_influence", "Remove influence") + action_button("remove_favour", "Remove favour") action_button("pass", "Pass") action_button("done", "Done") @@ -2557,7 +2557,7 @@ function goto_yorkist_choice() { } states.warwicks_propaganda_yorkist_choice = { - inactive: "Yorkists to choose to Pay or Remove influence", + inactive: "Yorkists to choose to Pay or Remove favour", prompt() { view.prompt = `For each Stronghold, Pay 2 influence or Remove favour.` let done = true @@ -2572,7 +2572,7 @@ states.warwicks_propaganda_yorkist_choice = { view.actions.done = 1 } } else { - view.actions.remove_influence = 1 + view.actions.remove_favour = 1 view.actions.pay = 1 } @@ -2580,7 +2580,7 @@ states.warwicks_propaganda_yorkist_choice = { locale(loc) { game.who = loc }, - remove_influence() { + remove_favour() { push_undo() remove_favoury_marker(game.who) remove_propaganda_target(game.who) @@ -2806,7 +2806,7 @@ states.robins_rebellion = { }, locale(loc) { push_undo() - shift_favour_toward() + shift_favour_toward(loc) logi(`Placed/Removed favour at ${data.locales[loc].name}`) game.count++ }, |