Item Support #69

Merged
Oliver merged 50 commits from feature/item-support into main 2026-04-15 02:42:54 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 441930a5e5 - Show all commits

6
module/hooks/ready.mjs Normal file
View file

@ -0,0 +1,6 @@
Hooks.on(`ready`, () => {
// Remove with issue: Foundry/taf#52
if (game.release.generation < 14 && globalThis._loc == null) {
globalThis._loc = game.i18n.format.bind(game.i18n);
};
});

View file

@ -1,6 +1,8 @@
import "./hooks/init.mjs";
import "./hooks/ready.mjs";
import "./hooks/userConnected.mjs";
import "./hooks/renderSettingsConfig.mjs";
import { api } from "./api.mjs";
import { config } from "./config.mjs";