Ajout du propriétaire sur les Items
This commit is contained in:
parent
ff8a5d7ba3
commit
3b18e0b919
@ -1,5 +1,6 @@
|
|||||||
# 12.0
|
# 12.0
|
||||||
## 12.0.8 - La quincaillerie d'Astrobazzarh
|
## 12.0.8 - La quincaillerie d'Astrobazzarh
|
||||||
|
- le propriétaire est indiqué dans les feuilles d'équipements/compétences/...
|
||||||
- Corrections
|
- Corrections
|
||||||
- le tooltip de l'initiative affiche correctement l'initiative
|
- le tooltip de l'initiative affiche correctement l'initiative
|
||||||
|
|
||||||
|
@ -53,7 +53,8 @@ export class RdDItemSheet extends ItemSheet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get title() {
|
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}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
|
Loading…
Reference in New Issue
Block a user