From 13a4209e268c1576adc81c5364204dfb382a424a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 16 Apr 2024 18:01:24 +0200 Subject: x --- rules.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/rules.js b/rules.js index 7a13bd9..cd694b6 100644 --- a/rules.js +++ b/rules.js @@ -1555,23 +1555,20 @@ function end_influence_check() { function count_influence_score() { let score = game.check.reduce((p, c) => p + c.modifier, 0) + let lord = 0 if (is_levy_phase()) lord = game.who if (is_campaign_phase()) lord = game.command - // Space for whose lord has been selected for SUSPICION EVENT - - // TODO - what's going on here? - score = (lord, score) - if (score > 5) score = 5 if (score < 1) score = 1 score = automatic_success(lord, score) + return score } @@ -2686,8 +2683,6 @@ function do_levy_troops() { game.flags.free_levy = 0 } - // TODO: after The Commons - if (is_event_in_play(EVENT_YORK_THE_COMMONS) && is_york_lord(game.who)) { goto_the_commons() } else { -- cgit v1.2.3