From a2e2aea78bdd4f4ee82cf8e042cc11a993bccfbf Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 13 May 2021 20:26:57 +0200 Subject: [PATCH] Add migration for slayer points --- src/module/migrations/004.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/module/migrations/004.ts b/src/module/migrations/004.ts index 5f09a60..b0afa0f 100644 --- a/src/module/migrations/004.ts +++ b/src/module/migrations/004.ts @@ -60,7 +60,14 @@ function getActorUpdateData(actorData: DeepPartial) { return itemData; } }); - return hasItemUpdates ? { items } : undefined; + const updateData: Record = {}; + if (actorData.type === "character") { + updateData["data.slayerPoints"] = { value: 0 }; + } + if (hasItemUpdates) { + updateData["items"] = items; + } + return updateData; } async function migrateScenes() {