This commit is contained in:
WBHarry 2026-07-19 12:16:19 +02:00
parent 274b99d8c6
commit 2b9e21bd53
5 changed files with 12 additions and 7 deletions

View file

@ -282,6 +282,6 @@ export default class DhpChatLog extends foundry.applications.sidebar.tabs.ChatLo
async onRollReloadCheck(_event, messageData) {
const message = game.messages.get(messageData._id);
const needReload = await message.system.action.handleReload?.({ awaitRoll: true });
await message.update({ 'system.needReload': needReload });
await message.update({ 'system.needsReload': needReload });
}
}