diff --git a/module/dialogs/DiceList.mjs b/module/dialogs/DiceList.mjs index 0881a24..ae9b002 100644 --- a/module/dialogs/DiceList.mjs +++ b/module/dialogs/DiceList.mjs @@ -27,7 +27,6 @@ export class DiceList extends GenericDialog { async getData() { const ctx = await super.getData(); ctx.dice = this.dice; - console.debug(`DiceList context`, ctx); return ctx; }; diff --git a/module/documents/Actor/Handler.mjs b/module/documents/Actor/Handler.mjs index 25e71cd..06df8fe 100644 --- a/module/documents/Actor/Handler.mjs +++ b/module/documents/Actor/Handler.mjs @@ -85,7 +85,6 @@ export class ActorHandler extends Actor { */ async preItemEmbed(item) { let type = item.type[0].toUpperCase() + item.type.slice(1); - console.log(`preEmbed type =`, type) if (this.fn?.[`pre${type}Embed`]) { return await this.fn?.[`pre${type}Embed`].bind(this)(item); }; diff --git a/module/documents/Actor/Player.mjs b/module/documents/Actor/Player.mjs index 7f91eb6..dd07741 100644 --- a/module/documents/Actor/Player.mjs +++ b/module/documents/Actor/Player.mjs @@ -136,6 +136,7 @@ async function preUntypedEmbed(item) { function getRollData() { const data = { initiative: this.system.stats.hands ?? 0, + stats: this.system.stats, }; return data; }; diff --git a/module/dotdungeon.mjs b/module/dotdungeon.mjs index 31c0214..e1f1456 100644 --- a/module/dotdungeon.mjs +++ b/module/dotdungeon.mjs @@ -105,9 +105,9 @@ Hooks.once(`ready`, () => { let defaultTab = game.settings.get(`dotdungeon`, `defaultTab`); if (defaultTab) { if (!ui.sidebar?.tabs?.[defaultTab]) { - console.error(`Couldn't find a sidebar tab with ID:`, defaultTab); + console.error(`.dungeon | Couldn't find a sidebar tab with ID:`, defaultTab); } else { - console.debug(`Switching sidebar tab to:`, defaultTab); + console.debug(`.dungeon | Switching sidebar tab to:`, defaultTab); ui.sidebar.tabs[defaultTab].activate(); }; }; diff --git a/module/sheets/MobSheet.mjs b/module/sheets/MobSheet.mjs index 8e9bdfc..bb3c77b 100644 --- a/module/sheets/MobSheet.mjs +++ b/module/sheets/MobSheet.mjs @@ -43,7 +43,6 @@ export class MobSheet extends GenericActorSheet { // Compute rolls here - console.log(actor.uuid, `context:`, ctx) return ctx; }; }; \ No newline at end of file diff --git a/module/sheets/PlayerSheet.mjs b/module/sheets/PlayerSheet.mjs index bf15fba..5b32314 100644 --- a/module/sheets/PlayerSheet.mjs +++ b/module/sheets/PlayerSheet.mjs @@ -38,7 +38,6 @@ export class PlayerSheet extends GenericActorSheet { canAddAspect: !await actor.proxyFunction.bind(actor)(`atAspectLimit`), }; - console.log(actor.uuid, `context:`, ctx) return ctx; }; }; \ No newline at end of file