Compute modifiers using deterministic terms

This commit is contained in:
Carlos Fernandez 2026-03-30 20:53:32 -04:00
parent 714d4edc16
commit 186a01eec3
3 changed files with 16 additions and 22 deletions

View file

@ -217,7 +217,7 @@ export default class D20Roll extends DHRoll {
results: d.results
};
});
data.modifierTotal = this.calculateTotalModifiers(roll);
data.modifierTotal = roll.modifierTotal;
return data;
}