Version 12.0.8 - La quincaillerie d'Astrobazzarh #710

Merged
uberwald merged 5 commits from VincentVk/foundryvtt-reve-de-dragon:v11 into v11 2024-09-06 15:14:24 +02:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 3b18e0b919 - Show all commits

View File

@ -1,5 +1,6 @@
# 12.0
## 12.0.8 - La quincaillerie d'Astrobazzarh
- le propriétaire est indiqué dans les feuilles d'équipements/compétences/...
- Corrections
- le tooltip de l'initiative affiche correctement l'initiative

View File

@ -53,7 +53,8 @@ export class RdDItemSheet extends ItemSheet {
}
get title() {
return `${Misc.typeName('Item', this.item.type)}: ${this.item.name}`;
const owner = (this.item.parent instanceof Actor) ? `(${this.item.parent.name})` : '';
return `${Misc.typeName('Item', this.item.type)}: ${this.item.name} ${owner}`;
}
/* -------------------------------------------- */