diff --git a/src/module/rolls/check-factory.ts b/src/module/rolls/check-factory.ts index 43d8efaa..eb68789d 100644 --- a/src/module/rolls/check-factory.ts +++ b/src/module/rolls/check-factory.ts @@ -7,7 +7,7 @@ class DefaultCheckOptions implements DS4CheckFactoryOptions { readonly maxCritSuccess = 1; readonly minCritFailure = 20; readonly useSlayingDice = false; - readonly rollMode: DS4RollMode = "roll"; + readonly rollMode: Const.DiceRollMode = "roll"; mergeWith(other: Partial): DS4CheckFactoryOptions { return { ...this, ...other }; @@ -191,7 +191,7 @@ function parseDialogFormData(formData: HTMLFormElement): Partial