Compute modifiers using deterministic terms (#1758)

This commit is contained in:
Carlos Fernandez 2026-03-31 11:17:22 -04:00 committed by GitHub
parent 766c1742d7
commit 8f3f11f227
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}