refactor: address a couple of V9 deprecations

This commit is contained in:
Johannes Loher 2022-01-08 18:26:31 +01:00
parent f57728e1fd
commit e41c4f1b07
3 changed files with 10 additions and 10 deletions

View file

@ -27,7 +27,7 @@ export class DS4Actor extends Actor {
prepareData(): void {
this.data.reset();
this.prepareBaseData();
this.prepareEmbeddedEntities();
this.prepareEmbeddedDocuments();
this.applyActiveEffectsToBaseData();
this.prepareDerivedData();
this.applyActiveEffectsToDerivedData();
@ -57,7 +57,7 @@ export class DS4Actor extends Actor {
/**
* @override
* We override this with an empty implementation because we have our own custom way of applying
* {@link ActiveEffect}s and {@link Actor#prepareEmbeddedEntities} calls this.
* {@link ActiveEffect}s and {@link Actor#prepareEmbeddedDocuments} calls this.
*/
applyActiveEffects(): void {
return;