From a07e9dbf1c55a189f6422900db4b55e69471cc5d Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sat, 20 Feb 2021 17:30:17 +0100 Subject: [PATCH] Update types --- src/module/rolls/check-factory.ts | 15 ++++----------- yarn.lock | 4 ++-- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/src/module/rolls/check-factory.ts b/src/module/rolls/check-factory.ts index 43d8efa..eb68789 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