This commit is contained in:
WBHarry 2025-12-08 21:01:29 +01:00
parent 09141053c9
commit 2b1535333a
7 changed files with 40 additions and 26 deletions

View file

@ -21,7 +21,7 @@ export const AdversaryBPPerEncounter = (adversaries, characters) => {
if (type.partyAmountPerBP) {
acc += characters.length === 0 ? 0 : Math.ceil(entry.nr / characters.length);
} else {
acc += bpCost;
acc += bpCost * entry.nr;
}
return acc;