Skip to content

Commit

Permalink
0.5.51
Browse files Browse the repository at this point in the history
  • Loading branch information
gambit07 committed Sep 24, 2024
1 parent a07db97 commit e5c89e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,8 @@ jobs:
- name: Set Release Notes for Github
id: set-release-notes-github
run: |
echo "- Additions:" >> release_notes.txt
echo " - Jump: Added the Jump spell. This does nothing other than add an ae to work with Rabbit Hop for distance calculations." >> release_notes.txt
echo "- Updates:" >> release_notes.txt
echo " - Rabbit Hop: Fully implements the Rabbit Hop Harengon feature, previously was only present to account for OA. Credit to sage25 for this one!" >> release_notes.txt
echo "- Bugfixes:" >> release_notes.txt
echo " - Sentinel: Fix invalid variable lookup after refactor last update" >> release_notes.txt
echo " - Poetry in Misery: Fix missing ternary check after refactor last update" >> release_notes.txt
echo " - Sentinel: Fix movement effect not applying to correct target" >> release_notes.txt
echo "release-notes-github<<EOF" >> $GITHUB_ENV
cat release_notes.txt >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion scripts/macros/sentinel.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export async function sentinel({workflowData,workflowType,workflowCombat}) {
}
];

await MidiQOL.socket().executeAsUser("createEffects", gmUser, { actorUuid: target.actor.uuid, effects: effectData });
await MidiQOL.socket().executeAsUser("createEffects", gmUser, { actorUuid: workflow.token.actor.uuid, effects: effectData });
}

await helpers.addReaction({actorUuid: `${validTokenPrimary.actor.uuid}`});
Expand Down

0 comments on commit e5c89e3

Please sign in to comment.