Rename PlayerSheetV2 containing file

This commit is contained in:
Oliver-Akins 2024-03-17 11:22:08 -06:00
parent 3981e95ff0
commit d100af3198
2 changed files with 9 additions and 2 deletions

View file

@ -19,7 +19,7 @@ import { PetSheet } from "./sheets/Items/PetSheet.mjs";
// Actor Sheets // Actor Sheets
import { BasicSyncSheet } from "./sheets/SyncVariations/BasicSyncSheet.mjs"; import { BasicSyncSheet } from "./sheets/SyncVariations/BasicSyncSheet.mjs";
import { PlayerSheetv2 } from "./sheets/Actors/PC/Improved.mjs"; import { PlayerSheetv2 } from "./sheets/Actors/PC/PlayerSheetV2.mjs";
import { MVPPCSheet } from "./sheets/MVPPCSheet.mjs"; import { MVPPCSheet } from "./sheets/MVPPCSheet.mjs";
import { MobSheet } from "./sheets/MobSheet.mjs"; import { MobSheet } from "./sheets/MobSheet.mjs";

View file

@ -14,7 +14,7 @@ export class PlayerSheetv2 extends GenericActorSheet {
group: `page`, group: `page`,
navSelector: `nav.page`, navSelector: `nav.page`,
contentSelector: `.page-content`, contentSelector: `.page-content`,
initial: `inventory`, initial: `avatar`,
}, },
{ {
group: `inventory`, group: `inventory`,
@ -35,6 +35,13 @@ export class PlayerSheetv2 extends GenericActorSheet {
if (this.document.isEmbedded) return; if (this.document.isEmbedded) return;
if (!this.isEditable) return; if (!this.isEditable) return;
console.debug(`.dungeon | Adding event listeners for Actor: ${this.id}`); console.debug(`.dungeon | Adding event listeners for Actor: ${this.id}`);
html.find(`.create-ae`).on(`click`, async ($e) => {
console.debug(`Creating an ActiveEffect?`);
ActiveEffect.implementation.create({
name: "Default AE",
}, { parent: this.actor, renderSheet: true });
});
}; };
async getData() { async getData() {