10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
|
/* -------------------------------------------- */
|
||
|
import { RdDUtility } from "./rdd-utility.js";
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
// Activate chat listeners defined
|
||
|
Hooks.on('renderChatLog', (log, html, data) => {
|
||
|
RdDUtility.chatListeners(html);
|
||
|
});
|
||
|
|