foundryvtt-blades-in-the-dark
foundryvtt-blades-in-the-dark copied to clipboard
Entanglements macro adds dice results instead of drawing multiple entries
- Set a crew's heat to 2 or more
- Run the entanglements macro
- See that instead of drawing multiple entanglements, the sum of the rolled dice is instead chosen as a single entanglement.
E.g. in the roll below, the dice were all 1s and 2s. However the result shown is for a value of 6+
Changing the macho text for the formula to:
let rollFormula = `${crewWanted}d6kh1`;
if (rollFormula === "0d6kh1") {
rollFormula = "2d6kl1";
}
resolves this