Begin work on the fate path dropdown

This commit is contained in:
Oliver-Akins 2024-12-22 00:23:29 -07:00
parent edd4e49f62
commit f6ca694dcc
10 changed files with 82 additions and 21 deletions

View file

@ -9,6 +9,7 @@ import { registerDevSettings } from "../settings/devSettings.mjs";
import { CryptDie } from "../dice/CryptDie.mjs";
// Misc
import helpers from "../handlebarHelpers/_index.mjs";
import { Logger } from "../utils/Logger.mjs";
Hooks.once(`init`, () => {
@ -35,4 +36,6 @@ Hooks.once(`init`, () => {
});
// #endregion
// #endregion
Handlebars.registerHelper(helpers);
});