From f7c18dc702505e959c8348d3e73d37c29df14e94 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 4 Mar 2021 10:00:46 +0100 Subject: [PATCH] Make private methods protected --- src/module/item/item.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/module/item/item.ts b/src/module/item/item.ts index c871685..ac9b90c 100644 --- a/src/module/item/item.ts +++ b/src/module/item/item.ts @@ -58,7 +58,7 @@ export class DS4Item extends Item { } } - private async rollWeapon(this: this & { readonly isOwned: true }): Promise { + protected async rollWeapon(this: this & { readonly isOwned: true }): Promise { if (!(this.data.type === "weapon")) { throw new Error( game.i18n.format("DS4.ErrorWrongItemType", { @@ -91,7 +91,7 @@ export class DS4Item extends Item { }); } - private async rollSpell(): Promise { + protected async rollSpell(): Promise { if (!(this.data.type === "spell")) { throw new Error( game.i18n.format("DS4.ErrorWrongItemType", { @@ -133,7 +133,7 @@ export class DS4Item extends Item { }); } - private async getCombatValueKeyForAttackType(attackType: AttackType): Promise<"meleeAttack" | "rangedAttack"> { + protected async getCombatValueKeyForAttackType(attackType: AttackType): Promise<"meleeAttack" | "rangedAttack"> { if (attackType === "meleeRanged") { const { melee, ranged } = { ...DS4.i18n.attackTypes }; const identifier = "attack-type-selection";