REFACTOR: remove DhpApplicationMixin

REFACTOR: remove getEmbeddedDocument method from Item class
REFACTOR: remove prepareData method from Actor class
REFACTOR: remove _preUpdate method from Actor class
This commit is contained in:
Joaquin Pereyra 2025-06-28 13:42:18 -03:00
parent 1135669d0b
commit a4881854a3
3 changed files with 0 additions and 66 deletions

View file

@ -20,14 +20,6 @@ export default class DhpActor extends Actor {
this.updateSource({ prototypeToken });
}
prepareData() {
super.prepareData();
}
async _preUpdate(changed, options, user) {
super._preUpdate(changed, options, user);
}
async updateLevel(newLevel) {
if (this.type !== 'character' || newLevel === this.system.levelData.level.changed) return;