diff --git a/module/dice/damageRoll.mjs b/module/dice/damageRoll.mjs index 7534b8a8..d0ad83bd 100644 --- a/module/dice/damageRoll.mjs +++ b/module/dice/damageRoll.mjs @@ -49,7 +49,10 @@ export default class DamageRoll extends DHRoll { config.mute = true; } await super.buildPost(roll, config, message); - if (config.source?.message) chatMessage.update({ 'system.damage': config.damage }); + if (config.source?.message) { + chatMessage.update({ 'system.damage': config.damage }); + foundry.audio.AudioHelper.play({ src: CONFIG.sounds.dice }); + } } static unifyDamageRoll(rolls) {