Restored ChatMessage functionality

This commit is contained in:
WBHarry 2025-06-02 21:34:10 +02:00
parent 6bfb25325f
commit 43b0c626c4
2 changed files with 6 additions and 2 deletions

View file

@ -3,6 +3,10 @@ import { DualityRollColor } from '../data/settings/Appearance.mjs';
export default class DhpChatMessage extends ChatMessage {
async renderHTML() {
if (this.type === 'dualityRoll' || this.type === 'adversaryRoll' || this.type === 'abilityUse') {
this.content = await foundry.applications.handlebars.renderTemplate(this.content, this.system);
}
/* We can change to fully implementing the renderHTML function if needed, instead of augmenting it. */
const html = await super.renderHTML();