Update effect property to effects array in project-document-json.test.ts

This commit is contained in:
2026-04-14 13:58:27 +02:00
parent fc53c07c2e
commit fe6c02ba55

View File

@@ -663,14 +663,16 @@ describe("project document JSON", () => {
kind: "actor",
actorId: legacyNpc.actorId
},
effect: {
type: "setActorPresence",
target: {
kind: "actor",
actorId: legacyNpc.actorId
},
active: true
}
effects: [
{
type: "setActorPresence",
target: {
kind: "actor",
actorId: legacyNpc.actorId
},
active: true
}
]
})
});
});