I'm trying to roll two dice and get back the lowest result as a success. When I run the function below I get the error.
No result was passed to the dice-roller-parser. Using fallback Math.random
const parse = DRP.parseNotation("2d100kl<50");
await diceBox?.roll(parse).then((result) => {
const finalResult = DRP.parseFinalResults(result);
});