Skip to content

Commit

Permalink
Merge pull request #712 from VioletPyromaniac/patch-1
Browse files Browse the repository at this point in the history
Wrath and Glory compat fix ItemId -> ItemUuid
  • Loading branch information
otigon authored Aug 6, 2024
2 parents bc6e6de + 09e3323 commit d5d2db0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/system-support/aa-wrath-and-glory.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function systemHooks() {
let compiledData = await getRequiredData({
actorId: msg.speaker.actor ?? msg.flags[systemName].testData.context.speaker.actor,
targets: compileTargets(msg.flags[systemName].testData.context.targets),
itemId: msg.flags[systemName].testData.testData.itemId,
itemUuid: msg.flags[systemName].testData.testData.itemId,
workflow: msg,
})
if (!compiledData.item) { return; }
Expand All @@ -29,4 +29,4 @@ async function runWrathandGlory(input) {
console.log(input);
const handler = await AAHandler.make(input);
trafficCop(handler);
}
}

0 comments on commit d5d2db0

Please sign in to comment.