From a0f14413739153872d32fa788b4d4e70c811918d Mon Sep 17 00:00:00 2001 From: Nikhil Nagarajan Date: Wed, 14 Jan 2026 16:37:13 -0500 Subject: [PATCH] something to mess with --- .../sheets/rollTable/rollTable.mjs | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/module/applications/sheets/rollTable/rollTable.mjs b/module/applications/sheets/rollTable/rollTable.mjs index 0b03a89a..fa0adf7e 100644 --- a/module/applications/sheets/rollTable/rollTable.mjs +++ b/module/applications/sheets/rollTable/rollTable.mjs @@ -1,4 +1,26 @@ //Setting RollTable -export default class DhRollTable extends foundry.applications.sheets.RollTableSheet{ +export default class DhRollTableSheet extends foundry.applications.sheets.RollTableSheet{ + static get PARTS() { + const parts= super.PARTS; + return{ + summary: { + template: "ournewmodifiedsummary.hbs" + }, + ...parts + }; + } + static actions = { + addAltFormula: DhRollTableSheet.#onAddAltFormula, + removeAltForuma: DhRollTableSheet.#onRemoveAltFormula + }; + //Add formulafield + static async #onAddAltFormula (event,target) { + + } + + //Remove formulafield + static async #onRemoveAltFormula (event,target) { + + } } \ No newline at end of file