summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-04-16 18:01:24 +0200
committerTor Andersson <tor@ccxvii.net>2024-04-16 18:01:24 +0200
commit13a4209e268c1576adc81c5364204dfb382a424a (patch)
treedae59316046c8432c8eb0067351128546aed9b58
parent7b249297506fd4001b3484a28a66a389d404a65d (diff)
downloadplantagenet-13a4209e268c1576adc81c5364204dfb382a424a.tar.gz
x
-rw-r--r--rules.js9
1 files 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 {