Move generic sheet mixin
This commit is contained in:
parent
c4a29d8ae1
commit
a6f11cf6fe
2 changed files with 3 additions and 4 deletions
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue