diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2025-01-20 10:49:47 +0100 |
---|---|---|
committer | teisuru <31881306+teisuru@users.noreply.github.com> | 2025-01-20 10:49:47 +0100 |
commit | 7ce679fa9898be1df134ea0518ba4f120f2f3e73 (patch) | |
tree | ca150b0ded235bda77b739984fb888afc28672d8 /rules.js | |
parent | 3d1cd8b9569b3257938deccd64f931fc61fbde7a (diff) | |
download | plantagenet-7ce679fa9898be1df134ea0518ba4f120f2f3e73.tar.gz |
fix quartermasters
removal effects on supply for this capability
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -3393,14 +3393,6 @@ function chamberlains_eligible_supply(source) { } return false; } -function quartermasters_eligible_supply(source) { - if (lord_has_capability(game.command, AOW_LANCASTER_QUARTERMASTERS)) { - for (let vassal of all_vassals) - if (is_vassal_mustered_with(vassal, game.command) && source === get_vassal_seat(vassal)) - return true; - } - return false; -} function lord_has_stafford_branch(loc, lord) { if (lord_has_capability(lord, AOW_YORK_STAFFORD_BRANCH)) { return (loc === LOC_EXETER || @@ -3520,8 +3512,6 @@ function use_stronghold_supply(source, amount) { add_lord_assets(game.command, PROV, amount); if (chamberlains_eligible_supply(source)) logcap(AOW_LANCASTER_CHAMBERLAINS); - else if (quartermasters_eligible_supply(source)) - logcap(AOW_LANCASTER_QUARTERMASTERS); else deplete_locale(source); } |