From 257f63d72c115d9672b836671eee50b678df404a Mon Sep 17 00:00:00 2001 From: Dapoolp Date: Wed, 13 Aug 2025 17:32:27 +0200 Subject: [PATCH] Uncomment chatDisplay --- module/data/action/baseAction.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/data/action/baseAction.mjs b/module/data/action/baseAction.mjs index 9db3ed23..a886bf49 100644 --- a/module/data/action/baseAction.mjs +++ b/module/data/action/baseAction.mjs @@ -114,7 +114,7 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel async use(event, options = {}) { if (!this.actor) throw new Error("An Action can't be used outside of an Actor context."); - // if (this.chatDisplay) await this.toChat(); + if (this.chatDisplay) await this.toChat(); let { byPassRoll } = options, config = this.prepareConfig(event, byPassRoll); for (let i = 0; i < this.constructor.extraSchemas.length; i++) {