Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Haxxer committed Oct 25, 2023
1 parent 5e3c96c commit f4aa02d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Item Piles Changelog

## Version 2.8.1

- Fixed D&D5e displaying all characters for players when giving items, instead of just the ones they have at least limited visibility of

## Version 2.8.0

- Added "Send To Character" when right-clicking items in your inventory in D&D5e - a much faster way to send items between characters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
return (actor.type === "character" || actor.type === "npc")
&& actor !== item.parent
&& !PileUtilities.isValidItemPile(actor)
&& (game.user.isGM || (actor.ownership["default"] >= 1 || actor.ownership[game.user.id] >= 1))
})
.map(actor => ({
value: actor.uuid,
Expand Down

0 comments on commit f4aa02d

Please sign in to comment.