mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-10 19:17:09 +01:00
remote yet more unecessary fallback
This commit is contained in:
parent
bd732afb04
commit
62e02f91d2
3 changed files with 3 additions and 3 deletions
|
|
@ -702,7 +702,7 @@ export default class CharacterSheet extends DaggerheartSheet(ActorSheetV2) {
|
||||||
description: card.system.effect,
|
description: card.system.effect,
|
||||||
actions: card.system.actions,
|
actions: card.system.actions,
|
||||||
source: {
|
source: {
|
||||||
actor: card.actor?.uuid ?? card.actor?.id ?? null,
|
actor: card.actor?.uuid ?? null,
|
||||||
item: card.uuid ?? card.id
|
item: card.uuid ?? card.id
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -340,5 +340,5 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo
|
||||||
);
|
);
|
||||||
|
|
||||||
action.use();
|
action.use();
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ export default class DHItem extends foundry.documents.Item {
|
||||||
description: this.system.description,
|
description: this.system.description,
|
||||||
actions: this.system.actions ?? [],
|
actions: this.system.actions ?? [],
|
||||||
source: {
|
source: {
|
||||||
actor: this.actor?.uuid ?? this.actor?.id ?? null,
|
actor: this.actor?.uuid ?? null,
|
||||||
item: this.uuid ?? this.id
|
item: this.uuid ?? this.id
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue