Also check item features when checking if has description

This commit is contained in:
Carlos Fernandez 2026-06-24 17:12:24 -04:00
parent 8abc94a7da
commit f124ae0371
3 changed files with 9 additions and 9 deletions

View file

@ -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 */