mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 10:29:54 +02:00
Also check item features when checking if has description
This commit is contained in:
parent
8abc94a7da
commit
f124ae0371
3 changed files with 9 additions and 9 deletions
|
|
@ -90,7 +90,7 @@ export default class DHItem extends foundry.documents.Item {
|
|||
}
|
||||
|
||||
get hasDescription() {
|
||||
return Boolean(this.system.description);
|
||||
return Boolean(this.system.description) || Boolean(this.system.itemFeatures?.length);
|
||||
}
|
||||
|
||||
/** @inheritdoc */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue