diff --git a/src/module/item/item.ts b/src/module/item/item.ts index 52d5941..c871685 100644 --- a/src/module/item/item.ts +++ b/src/module/item/item.ts @@ -50,9 +50,9 @@ export class DS4Item extends Item { switch (this.data.type) { case "weapon": - await this.rollWeapon(); + return this.rollWeapon(); case "spell": - await this.rollSpell(); + return this.rollSpell(); default: throw new Error(game.i18n.format("DS4.ErrorRollingForItemTypeNotPossible", { type: this.data.type })); }