From 3b18e0b919faa07d2bcf4ef9b54e5ba708ce2733 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Thu, 5 Sep 2024 23:44:12 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20propri=C3=A9taire=20sur=20les=20It?= =?UTF-8?q?ems?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- changelog.md | 1 + module/item-sheet.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index a3382c08..50d9b931 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/module/item-sheet.js b/module/item-sheet.js index 2bfc34b0..fd8b90e3 100644 --- a/module/item-sheet.js +++ b/module/item-sheet.js @@ -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}`; } /* -------------------------------------------- */