This commit is contained in:
WBHarry 2025-10-25 19:36:32 +02:00
parent aed7942fc4
commit 8b864ba388
11 changed files with 50 additions and 4 deletions

View file

@ -0,0 +1,9 @@
export default class DHSystemMessage extends foundry.abstract.TypeDataModel {
static defineSchema() {
const fields = foundry.data.fields;
return {
useTitle: new fields.BooleanField({ initial: true })
};
}
}