From 9f297149b22516f5e322aa1f4e6c854ec5a34162 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 18 Mar 2021 08:58:35 +0100 Subject: [PATCH] Rename a method for consistency --- src/module/rolls/check-factory.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/module/rolls/check-factory.ts b/src/module/rolls/check-factory.ts index 1ee6724..5498aca 100644 --- a/src/module/rolls/check-factory.ts +++ b/src/module/rolls/check-factory.ts @@ -33,7 +33,9 @@ class CheckFactory { private options: DS4CheckFactoryOptions; async execute(): Promise { - const innerFormula = ["ds", this.createTargetNumberModifier(), this.createCoupFumbleModifier()].filterJoin(""); + const innerFormula = ["ds", this.createCheckTargetNumberModifier(), this.createCoupFumbleModifier()].filterJoin( + "", + ); const formula = this.options.useSlayingDice ? `{${innerFormula}}x` : innerFormula; const roll = Roll.create(formula); @@ -43,7 +45,7 @@ class CheckFactory { ); } - createTargetNumberModifier(): string | null { + createCheckTargetNumberModifier(): string | null { return "v" + (this.checkTargetNumber + this.gmModifier); }