mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-23 02:49:55 +02:00
Remove postEvaluate static method
This commit is contained in:
parent
1e30ea42ba
commit
1c6369ae87
5 changed files with 76 additions and 71 deletions
|
|
@ -185,8 +185,10 @@ export default class D20Roll extends DHRoll {
|
|||
return changeKeys;
|
||||
}
|
||||
|
||||
static postEvaluate(roll, config = {}) {
|
||||
const data = super.postEvaluate(roll, config);
|
||||
static async buildEvaluate(roll, config = {}, message = {}) {
|
||||
await super.buildEvaluate(roll, config, message);
|
||||
|
||||
const data = config.roll;
|
||||
data.type = config.actionType;
|
||||
data.difficulty = config.roll.difficulty;
|
||||
if (config.targets?.length) {
|
||||
|
|
@ -222,7 +224,6 @@ export default class D20Roll extends DHRoll {
|
|||
};
|
||||
});
|
||||
data.modifierTotal = roll.modifierTotal;
|
||||
return data;
|
||||
}
|
||||
|
||||
resetFormula() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue