Add socket event handling foundations and an updateSands event in anticipation of hasty rolls

This commit is contained in:
Eldritch-Oliver 2025-10-06 23:25:27 -06:00
parent 7c0fb75e0f
commit c0a9731b02
5 changed files with 73 additions and 1 deletions

View file

@ -34,6 +34,7 @@ import { Logger } from "../utils/Logger.mjs";
import { registerCustomComponents } from "../Apps/components/_index.mjs";
import { registerDevSettings } from "../settings/devSettings.mjs";
import { registerMetaSettings } from "../settings/metaSettings.mjs";
import { registerSockets } from "../sockets/_index.mjs";
import { registerUserSettings } from "../settings/userSettings.mjs";
import { registerWorldSettings } from "../settings/worldSettings.mjs";
@ -127,6 +128,7 @@ Hooks.once(`init`, () => {
CONFIG.Actor.trackableAttributes.hero = HeroData.trackableAttributes;
// #endregion
registerSockets();
registerCustomComponents();
Handlebars.registerHelper(helpers);
});