diff --git a/module/applications/sheets/class.mjs b/module/applications/sheets/class.mjs index 94788db2..ea0806d5 100644 --- a/module/applications/sheets/class.mjs +++ b/module/applications/sheets/class.mjs @@ -213,6 +213,7 @@ import DaggerheartSheet from './daggerheart-sheet.mjs'; import Tagify from '@yaireo/tagify'; const { ItemSheetV2 } = foundry.applications.sheets; +const { TextEditor } = foundry.applications.ux; export default class ClassSheet extends DaggerheartSheet(ItemSheetV2) { static DEFAULT_OPTIONS = { tag: 'form', diff --git a/module/applications/sheets/pc.mjs b/module/applications/sheets/pc.mjs index 8112a697..febfdfa8 100644 --- a/module/applications/sheets/pc.mjs +++ b/module/applications/sheets/pc.mjs @@ -6,6 +6,7 @@ import AncestrySelectionDialog from '../ancestrySelectionDialog.mjs'; import DaggerheartSheet from './daggerheart-sheet.mjs'; const { ActorSheetV2 } = foundry.applications.sheets; +const { TextEditor } = foundry.applications.ux; export default class PCSheet extends DaggerheartSheet(ActorSheetV2) { constructor(options = {}) { super(options); diff --git a/system.json b/system.json index d98cd595..3a54876c 100644 --- a/system.json +++ b/system.json @@ -32,6 +32,9 @@ }, { "name": "Mysteryusy" + }, + { + "name": "JimCanE" } ], "scripts": ["build/daggerheart.js"],