From b0c928c691ab17c2e2115d41fab579a64563e52e Mon Sep 17 00:00:00 2001 From: Jacob Lucas Date: Thu, 3 Jun 2021 14:29:59 +0100 Subject: [PATCH] Patched issue that prevented the old actor sheet from opening --- module/actor/sheets/oldSheets/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/actor/sheets/oldSheets/base.js b/module/actor/sheets/oldSheets/base.js index 138e58ff..2fccb001 100644 --- a/module/actor/sheets/oldSheets/base.js +++ b/module/actor/sheets/oldSheets/base.js @@ -90,7 +90,7 @@ export default class ActorSheet5e extends ActorSheet { // Owned Items data.items = actorData.items; for ( let i of data.items ) { - const item = this.actor.items.get(i.data._id); + const item = this.actor.items.get(i._id); i.labels = item.labels; } data.items.sort((a, b) => (a.sort || 0) - (b.sort || 0));