mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-10 19:17:09 +01:00
forgot to update superfluous fallback
This commit is contained in:
parent
abda31bdfa
commit
bd732afb04
1 changed files with 2 additions and 2 deletions
|
|
@ -824,7 +824,7 @@ export default class CharacterSheet extends DaggerheartSheet(ActorSheetV2) {
|
||||||
description: item.system.description,
|
description: item.system.description,
|
||||||
actions: item.system.actions,
|
actions: item.system.actions,
|
||||||
source: {
|
source: {
|
||||||
actor: item.actor?.uuid ?? item.actor?.id ?? null,
|
actor: this.item?.actor?.uuid ?? null,
|
||||||
item: item.uuid ?? item.id
|
item: item.uuid ?? item.id
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
@ -917,7 +917,7 @@ export default class CharacterSheet extends DaggerheartSheet(ActorSheetV2) {
|
||||||
img: item.img,
|
img: item.img,
|
||||||
description: item.system.description,
|
description: item.system.description,
|
||||||
source: {
|
source: {
|
||||||
actor: item.actor?.uuid ?? item.actor?.id ?? null,
|
actor: this.item?.actor?.uuid ?? null,
|
||||||
item: item.uuid ?? item.id
|
item: item.uuid ?? item.id
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue