From 6f8e25441bbee2faf590a55295d35b670cc6cca5 Mon Sep 17 00:00:00 2001 From: teisuru <31881306+teisuru@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:26:42 +0100 Subject: fix L31 --- play.js | 2 +- rules.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/play.js b/play.js index b75259d..9e49d12 100644 --- a/play.js +++ b/play.js @@ -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") diff --git a/rules.js b/rules.js index 5ce2c34..5e6bf12 100644 --- a/rules.js +++ b/rules.js @@ -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++ }, -- cgit v1.2.3