Enhance combat

This commit is contained in:
2021-02-04 22:55:57 +01:00
parent 63e552cc6a
commit 92f8fe4ee8
4 changed files with 127 additions and 17 deletions

View File

@ -57,6 +57,10 @@ Hooks.once("init", async function () {
Hooks.on('renderChatLog', (log, html, data) => {
SoSUtility.registerChatCallbacks(html);
});
// Init/registers
Hooks.on('updateCombat', (combat, round, diff, id) => {
SoSUtility.updateCombat(combat, round, diff, id);
});
});