RC-76 | Crypt Application Setup

This commit is contained in:
Oliver-Akins 2025-01-01 01:55:44 -07:00
parent 98eb389a13
commit 9e12737429
3 changed files with 50 additions and 0 deletions

View file

@ -1,3 +1,4 @@
import { CryptApp } from "../Apps/CryptApp.mjs";
import { Logger } from "../utils/Logger.mjs";
Hooks.once(`ready`, () => {
@ -17,4 +18,7 @@ Hooks.once(`ready`, () => {
ui.sidebar.expand();
if (game.paused) { game.togglePause() };
};
CONFIG.ui.crypt = new CryptApp();
CONFIG.ui.crypt.render({ force: true });
});