FIX: Add enritch to HTMLField

FIX: Remove no-HTMLField from Manifest
FIX: Convert Scar's HTMLField to StringField
FIX: Remove unused HTMLField
This commit is contained in:
Joaquin Pereyra 2025-07-09 13:53:24 -03:00
parent b3e7c6b9b2
commit f6ec583988
9 changed files with 133 additions and 17 deletions

View file

@ -24,15 +24,6 @@ export default class BaseDataActor extends foundry.abstract.TypeDataModel {
return this.constructor.metadata;
}
/** @inheritDoc */
static defineSchema() {
const fields = foundry.data.fields;
return {
description: new fields.HTMLField({ required: true, nullable: true })
};
}
/**
* Obtain a data object used to evaluate any dice rolls associated with this Item Type
* @param {object} [options] - Options which modify the getRollData method.