From 3edc669e4480fc858b49fda5ec787929a253d05d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20Guillois?= Date: Fri, 1 Sep 2023 21:50:07 +0200 Subject: [PATCH] v0.1.2 --- module/sheets/npc-group.mjs | 2 ++ system.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/module/sheets/npc-group.mjs b/module/sheets/npc-group.mjs index 07f20f3..82acb70 100644 --- a/module/sheets/npc-group.mjs +++ b/module/sheets/npc-group.mjs @@ -167,6 +167,7 @@ export class VermineGroupSheet extends VermineActorSheet { if (actorIdIndex !== -1){ this.actor.system.members.splice(actorIdIndex, 1); } + this.actor.update({ "system.members": this.actor.system.members }); this.render(true); }); @@ -177,6 +178,7 @@ export class VermineGroupSheet extends VermineActorSheet { if (actorIdIndex !== -1){ this.actor.system.encounters.splice(actorIdIndex, 1); } + this.actor.update({ "system.encounters": this.actor.system.encounters }); this.render(true); }); diff --git a/system.json b/system.json index 912ebba..933fb87 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "vermine2047", "title": "Vermine 2047", "description": "The Vermine 2047 system for FoundryVTT!", - "version": "0.1.1", + "version": "0.1.2", "compatibility": { "minimum": 10, "verified": "10.287",