cleanup and somehow git is ignoring some changes

This commit is contained in:
psitacus 2025-07-12 02:39:03 -06:00
parent 5065a609ac
commit b525995653
2 changed files with 1 additions and 8 deletions

View file

@ -30,13 +30,6 @@ export default class DhActiveEffectConfig extends foundry.applications.sheets.Ac
async _preparePartContext(partId, context) {
const partContext = await super._preparePartContext(partId, context);
switch (partId) {
case 'details':
// Add your custom checkbox field here
partContext.fields.yourCustomField = new foundry.data.fields.BooleanField({
label: "DAGGERHEART.EFFECTS.YourCustomField.label",
hint: "DAGGERHEART.EFFECTS.YourCustomField.hint"
});
break;
case 'changes':
const fieldPaths = [];
const validFieldPath = fieldPath => this.validFieldPath(fieldPath, this.#unapplicablePaths);