// This runs on file load console.log("BAE MODULE LOADED"); // This runs on FoundryVTT init Hooks.on("init", function() { console.log("BAE INIT HOOK"); }); // This runs when game data is ready Hooks.on("ready", function() { console.log("BAE READY HOOK"); });