Hooks.once('init', async () => { try { if (typeof Handlebars?.registerHelper === "function") { Handlebars.registerHelper("json", (ctx) => JSON.stringify(ctx ?? {}, null, 2)); } await loadTemplates([ "modules/wg-voidships-builder/templates/voidship-sheet.hbs" ]); } catch (e) { console.warn("wg-voidships-builder: init failed", e); } }); Hooks.once('ready', () => { console.warn('wg-voidships-builder: builder UI not yet active (stub)'); });