From 15b65b342ad1db6274f195d40bc70463e7fe9233 Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Thu, 4 Jan 2018 10:17:33 -0600 Subject: [PATCH] Removed extra achievement sound (#9763) --- website/client/components/notifications.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/client/components/notifications.vue b/website/client/components/notifications.vue index 2ddcb7e821..5e2a91e177 100644 --- a/website/client/components/notifications.vue +++ b/website/client/components/notifications.vue @@ -270,9 +270,6 @@ export default { if (this.user.needsCron) return; this.handleUserNotifications(after); }, - userAchievements () { - this.playSound('Achievement_Unlocked'); - }, armoireEmpty (after, before) { if (after === before || after === false) return; this.$root.$emit('bv::show::modal', 'armoire-empty'); @@ -280,6 +277,7 @@ export default { questCompleted () { if (!this.questCompleted) return; this.$root.$emit('bv::show::modal', 'quest-completed'); + this.playSound('Achievement_Unlocked'); }, invitedToQuest (after) { if (after !== true) return; @@ -326,10 +324,12 @@ export default { if (this.questCompleted) { this.$root.$emit('bv::show::modal', 'quest-completed'); + this.playSound('Achievement_Unlocked'); } if (this.userClassSelect) { this.$root.$emit('bv::show::modal', 'choose-class'); + this.playSound('Achievement_Unlocked'); } }, showLevelUpNotifications (newlevel) {