Files
fvtt-adventures-with-emmy/module/documents/chat-message.mjs
T
2026-03-05 21:51:31 +01:00

8 lines
172 B
JavaScript

export default class AwEChatMessage extends ChatMessage {
/** @override */
async getHTML(...args) {
const html = await super.getHTML(...args)
return html
}
}