From d0e0dda2b375c6d3926c095844738341d7979aca Mon Sep 17 00:00:00 2001 From: Jacob Lucas Date: Thu, 3 Jun 2021 14:31:15 +0100 Subject: [PATCH] Patched issue that meant that all powers were not being prepared --- module/item/entity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/item/entity.js b/module/item/entity.js index a6101363..02824961 100644 --- a/module/item/entity.js +++ b/module/item/entity.js @@ -1559,7 +1559,7 @@ export default class Item5e extends Item { */ _onCreateOwnedPower(data, actorData, isNPC) { const updates = {}; - updates["data.prepared"] = true; // Automatically prepare powers for everyone + updates["data.preparation.prepared"] = true; // Automatically prepare powers for everyone return updates; }