Fixed so that dropping on class/subclass...creates the item on the character (#803)

This commit is contained in:
WBHarry 2025-08-10 21:08:08 +02:00 committed by GitHub
parent 10b871d4c3
commit 4603e7e40c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 49 additions and 18 deletions

View file

@ -129,6 +129,7 @@ export default function DHApplicationMixin(Base) {
const docs = [];
for (const docData of this.relatedDocs) {
if (!docData) continue;
const doc = await foundry.utils.fromUuid(docData.uuid);
docs.push(doc);
}