fix merge

This commit is contained in:
walther.johnson 2025-07-07 18:02:54 -06:00
parent 6fb154767f
commit 68594451b4

View file

@ -94,11 +94,7 @@ export default class AdversarySheet extends DHBaseActorSheet {
name: game.i18n.localize('DAGGERHEART.GENERAL.Experience.single'), name: game.i18n.localize('DAGGERHEART.GENERAL.Experience.single'),
description: `${experience.name} ${ description: `${experience.name} ${
experience.modifier < 0 ? experience.modifier : `+${experience.modifier}` experience.modifier < 0 ? experience.modifier : `+${experience.modifier}`
}`, }`
source: {
actor: this.document.uuid,
item: null
}
}; };
const msg = new cls({ const msg = new cls({
type: 'abilityUse', type: 'abilityUse',
@ -116,4 +112,4 @@ export default class AdversarySheet extends DHBaseActorSheet {
item.toChat(this.document.id); item.toChat(this.document.id);
} }
} }
} }