From 99f40959b11be289766fec4840b1027687411f40 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Fri, 6 Mar 2026 11:03:02 +0100 Subject: [PATCH] . --- module/dice/damageRoll.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/dice/damageRoll.mjs b/module/dice/damageRoll.mjs index d0ad83bd..0c9d5e41 100644 --- a/module/dice/damageRoll.mjs +++ b/module/dice/damageRoll.mjs @@ -51,7 +51,8 @@ export default class DamageRoll extends DHRoll { await super.buildPost(roll, config, message); if (config.source?.message) { chatMessage.update({ 'system.damage': config.damage }); - foundry.audio.AudioHelper.play({ src: CONFIG.sounds.dice }); + + if (!game.modules.get('dice-so-nice')?.active) foundry.audio.AudioHelper.play({ src: CONFIG.sounds.dice }); } }