From 05bd1335ba2abcdec98a141c66a04c9548afd6be Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Fri, 5 Feb 2021 03:50:08 +0100 Subject: [PATCH] remove redundant cast --- src/module/actor/sheets/actor-sheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/actor/sheets/actor-sheet.ts b/src/module/actor/sheets/actor-sheet.ts index c9adc8f..33287aa 100644 --- a/src/module/actor/sheets/actor-sheet.ts +++ b/src/module/actor/sheets/actor-sheet.ts @@ -228,7 +228,7 @@ export class DS4ActorSheet extends ActorSheet { /** @override */ async _onDropItem(event: DragEvent, data: Parameters[0]): Promise { const item = ((await Item.fromDropData(data)) as unknown) as DS4Item; - if (item && !this.actor.canOwnItemType(item.data.type as ItemType)) { + if (item && !this.actor.canOwnItemType(item.data.type)) { ui.notifications.warn( game.i18n.format("DS4.WarningActorCannotOwnItem", { actorName: this.actor.name,