.dungeon/module/documents/Item/Aspect.mjs

9 lines
204 B
JavaScript

import { DotDungeonItem } from "./GenericItem.mjs";
export class Aspect extends DotDungeonItem {
async _preCreate() {
if (this.isEmbedded) {
return await this.actor?.preItemEmbed(this);
};
}
};