mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
[Feature] 1031 - Action Names In Chat (#1039)
* Fixed so that actions don't print the actor name in chat along with its own name * .
This commit is contained in:
parent
990c73987e
commit
3386a9d61d
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
|
|||
const hasRoll = this.getUseHasRoll(byPass);
|
||||
return {
|
||||
event,
|
||||
title: `${this.item.name}: ${game.i18n.localize(this.name)}`,
|
||||
title: `${this.item instanceof CONFIG.Actor.documentClass ? '' : `${this.item.name}: `}${game.i18n.localize(this.name)}`,
|
||||
source: {
|
||||
item: this.item._id,
|
||||
action: this._id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue