Move generic sheet mixin

This commit is contained in:
Oliver-Akins 2025-01-01 00:45:58 -07:00
parent c4a29d8ae1
commit a6f11cf6fe
2 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import { filePath } from "../../consts.mjs";
import { gameTerms } from "../../gameTerms.mjs";
import { GenericSheetMixin } from "./GenericActorSheet.mjs";
import { GenericSheetMixin } from "../GenericSheet.mjs";
import { localizer } from "../../utils/Localizer.mjs";
import { Logger } from "../../utils/Logger.mjs";

View file

@ -1,5 +1,5 @@
import { localizer } from "../../utils/Localizer.mjs";
import { Logger } from "../../utils/Logger.mjs";
import { localizer } from "../utils/Localizer.mjs";
import { Logger } from "../utils/Logger.mjs";
const { Roll } = foundry.dice;
@ -32,7 +32,6 @@ export function GenericSheetMixin(HandlebarsSheet) {
ctx.meta.editable = ctx.editable;
delete ctx.editable;
ctx.actor = this.document;
return ctx;
};
// #endregion