Start adv generator

This commit is contained in:
2022-05-19 23:30:29 +02:00
parent fad281a7b3
commit dfac102925
4 changed files with 358 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import { BoLUtility } from "./system/bol-utility.js"
import { BoLCombatManager } from "./system/bol-combat.js"
import { BoLTokenHud } from "./system/bol-action-hud.js"
import { BoLHotbar } from "./system/bol-hotbar.js"
import { BoLAdventureGenerator } from "./system/bol-adventure-generator.js"
/* -------------------------------------------- */
Hooks.once('init', async function () {
@ -108,6 +109,8 @@ Hooks.once('ready', async function () {
registerUsageCount('bol')
welcomeMessage()
BoLAdventureGenerator.init()
});