This commit is contained in:
2025-09-18 09:47:02 +02:00
parent 5892e6148d
commit e84c0127bb
4 changed files with 150 additions and 88 deletions
+13 -1
View File
@@ -1 +1,13 @@
Hooks.once('ready',()=>console.warn('wg-voidships-builder: helper script not provided, using stub'));
Hooks.once('init', () => {
try {
if (typeof Handlebars?.registerHelper === "function") {
Handlebars.registerHelper("json", (ctx) => JSON.stringify(ctx ?? {}, null, 2));
}
} catch (e) {
console.warn("wg-voidships-builder: handlebars helper failed", e);
}
});
Hooks.once('ready', () => {
console.warn('wg-voidships-builder: builder UI not yet active (stub)');
});