Implements HP loss HUD button
All checks were successful
Release Creation / build (release) Successful in 54s

This commit is contained in:
2025-04-27 22:11:10 +02:00
parent a043117ec7
commit 157163672c
31 changed files with 184 additions and 108 deletions

View File

@ -89,6 +89,7 @@ Hooks.once("init", function () {
setupTextEnrichers()
LethalFantasyUtils.registerHandlebarsHelpers()
LethalFantasyUtils.setHookListeners( )
console.info("LETHAL FANTASY | System Initialized")
})
@ -117,6 +118,7 @@ Hooks.once("ready", function () {
if (!SYSTEM.DEV_MODE) {
registerWorldCount("lethalFantasy")
}
_showUserGuide()
/**
@ -152,7 +154,7 @@ Hooks.on("renderChatMessage", (message, html, data) => {
}
})
Hooks.on("getCombatTrackerEntryContext", (html, options) => {
Hooks.on("getCombatTrackerEntryContext", (html, options) => {
LethalFantasyUtils.pushCombatOptions(html, options);
});
@ -181,4 +183,4 @@ async function registerWorldCount(registerKey) {
console.log("No usage log ")
}
}
}
}