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 }); } }