Skip to content

Commit

Permalink
fixes #964
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Nov 29, 2024
1 parent 8fb7b58 commit fb308c6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# vX.X.X

## Bugs
* [#964] Unable to edit/modify active effects on Items

## Chores
* [#962] Merged "Portuguese, Brazilian" translation updates from Crowdin

---

# v3.2.0

## Enhancements
Expand Down
2 changes: 1 addition & 1 deletion system/src/system/ActiveEffectsSD.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export default class ActiveEffectsSD {
}
else if (owner.documentName === "Item") {
effect = effectId
? owner.transferredEffects.find(effect => effect.id === effectId)
? owner.effects.find(effect => effect.id === effectId)
: null;
}

Expand Down

0 comments on commit fb308c6

Please sign in to comment.