From 61d93297af6e709541a93917e97555bd59cc22f5 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Tue, 23 Dec 2025 13:56:17 +0100 Subject: [PATCH] Fixed so that the reaction rolls from chat messages work with diceSoNice --- module/data/fields/action/saveField.mjs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/module/data/fields/action/saveField.mjs b/module/data/fields/action/saveField.mjs index 473286b1..1bf6362a 100644 --- a/module/data/fields/action/saveField.mjs +++ b/module/data/fields/action/saveField.mjs @@ -142,11 +142,7 @@ export default class SaveField extends fields.SchemaField { await chatMessage.update(changes); // }, 100); }; - if (game.modules.get('dice-so-nice')?.active) - game.dice3d - .waitFor3DAnimationByMessageID(result.message.id ?? result.message._id) - .then(async () => await updateMsg(message, targetId, result)); - else await updateMsg(message, targetId, result); + await updateMsg(message, targetId, result); } /**