diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-16 18:01:24 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-16 18:01:24 +0200 |
commit | 13a4209e268c1576adc81c5364204dfb382a424a (patch) | |
tree | dae59316046c8432c8eb0067351128546aed9b58 | |
parent | 7b249297506fd4001b3484a28a66a389d404a65d (diff) | |
download | plantagenet-13a4209e268c1576adc81c5364204dfb382a424a.tar.gz |
x
-rw-r--r-- | rules.js | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -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 { |