New items and cleanup

This commit is contained in:
2022-12-29 23:23:38 +01:00
parent cb91448c3b
commit 59e8cca56d
32 changed files with 411 additions and 705 deletions

View File

@ -15,8 +15,6 @@ import { HeritiersCreatureSheet } from "./heritiers-creature-sheet.js";
import { HeritiersUtility } from "./heritiers-utility.js";
import { HeritiersCombat } from "./heritiers-combat.js";
import { HeritiersItem } from "./heritiers-item.js";
import { HeritiersAutomation } from "./heritiers-automation.js";
import { HeritiersTokenHud } from "./heritiers-hud.js";
import { HERITIERS_CONFIG } from "./heritiers-config.js";
/* -------------------------------------------- */
@ -50,7 +48,6 @@ Hooks.once("init", async function () {
CONFIG.Item.documentClass = HeritiersItem
game.system.lesheritiers = {
HeritiersUtility,
HeritiersAutomation,
config: HERITIERS_CONFIG
}
@ -64,8 +61,6 @@ Hooks.once("init", async function () {
Items.registerSheet("fvtt-les-heritiers", HeritiersItemSheet, { makeDefault: true })
HeritiersUtility.init()
HeritiersAutomation.init()
HeritiersTokenHud.init()
});