mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
pushing in for the day
This commit is contained in:
parent
84458d8534
commit
8f9f0617cd
2 changed files with 9 additions and 8 deletions
|
|
@ -1,14 +1,16 @@
|
|||
//Setting RollTable
|
||||
export default class DhRollTableSheet extends foundry.applications.sheets.RollTableSheet {
|
||||
static get PARTS() {
|
||||
const parts = super.PARTS;
|
||||
static buildParts() {
|
||||
const { footer, ...parts } = super.PARTS;
|
||||
return {
|
||||
summary: {
|
||||
template: 'templates/sheets/rollTable/summary.hbs',
|
||||
},
|
||||
...parts
|
||||
};5
|
||||
...parts,
|
||||
summary: { template: 'systems/daggerheart/templates/sheets/rollTable/summary.hbs' },
|
||||
footer
|
||||
}
|
||||
}
|
||||
|
||||
static PARTS = DhRollTableSheet.buildParts();
|
||||
|
||||
static actions = {
|
||||
addAltFormula: DhRollTableSheet.#onAddAltFormula,
|
||||
removeAltForuma: DhRollTableSheet.#onRemoveAltFormula
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue