diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-11 00:33:18 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-11 00:33:18 +0200 |
commit | 763dd8f797f1e9948b420a4453e768b47f21fc95 (patch) | |
tree | 3bdfdb60c85c4ba35764920c49fa4b54a5ab6cbe /rules.js | |
parent | 9768c57475a5e6734bd2fe4743e529a23c6df579 (diff) | |
download | plantagenet-763dd8f797f1e9948b420a4453e768b47f21fc95.tar.gz |
always log IP relative to commanding lord/active player
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1491,6 +1491,9 @@ function log_favour(loc) { log(`S${loc} to Neutral.`); } function log_ip(n) { + // +ve ip is lancastrian + if ((game.command === NOBODY && game.active === YORK) || is_york_lord(game.command)) + n = -n; if (n < 0) log(".ip " + n); else if (n > 0) @@ -1503,11 +1506,11 @@ function reduce_influence(amt) { reduce_lancaster_influence(amt); } function reduce_york_influence(amt) { - log_ip(-amt); + log_ip(amt); game.influence = Math.max(-45, Math.min(45, game.influence + amt)); } function increase_york_influence(amt) { - log_ip(amt); + log_ip(-amt); game.influence = Math.max(-45, Math.min(45, game.influence - amt)); } function reduce_lancaster_influence(amt) { @@ -7846,6 +7849,7 @@ function goto_tides_of_war() { if (set_has(INFLUENCE_TURNS, current_turn())) york += tow_influence(all_york_lords); log("Total: " + york); + log_br(); game.influence = Math.max(0, Math.min(45, game.influence + lanc - york)); if (eligible_charity()) goto_we_done_deeds_of_charity(); |