[Fix] Summon Wildcard Handling (#2086)

This commit is contained in:
WBHarry 2026-07-13 22:57:43 +02:00 committed by GitHub
parent 81e264a477
commit 450287e4d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 31 additions and 24 deletions

View file

@ -256,7 +256,8 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
if (Hooks.call(`${CONFIG.DH.id}.postUseAction`, this, config) === false) return;
if (this.chatDisplay && !config.skips.createMessage && !config.actionChatMessageHandled) await this.toChat();
if (this.chatDisplay && !config.skips.createMessage && !config.actionChatMessageHandled)
await this.toChat(null, config);
return config;
}