registration things

This commit is contained in:
Nikhil Nagarajan 2026-01-14 17:00:40 -05:00
parent a0f1441373
commit e1d89999d7
5 changed files with 17 additions and 2 deletions

View file

@ -1,3 +1,4 @@
export * as actors from './actors/_module.mjs';
export * as api from './api/_modules.mjs';
export * as items from './items/_module.mjs';
export * as rollTables from './rollTable/_module.mjs'

View file

@ -0,0 +1 @@
export { default as RollTableSheet } from './rollTable.mjs';

View file

@ -4,7 +4,7 @@ export default class DhRollTableSheet extends foundry.applications.sheets.RollTa
const parts= super.PARTS;
return{
summary: {
template: "ournewmodifiedsummary.hbs"
template: "templates\sheets\rollTable\summary.hbs"
},
...parts
};