From e9df549bc92b98be51da00719ad9f9d69b8f16ca Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Mon, 7 Aug 2023 09:58:26 +0300 Subject: [PATCH] feat(client): add the missing MSTrophyMissing sound (#51161) --- client/src/utils/tone/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/utils/tone/index.ts b/client/src/utils/tone/index.ts index a072870b31b..6f7b8d855f8 100644 --- a/client/src/utils/tone/index.ts +++ b/client/src/utils/tone/index.ts @@ -61,7 +61,8 @@ const toneUrls = { [FlashMessages.UserNotCertified]: TRY_AGAIN, [FlashMessages.WrongName]: TRY_AGAIN, [FlashMessages.WrongUpdating]: TRY_AGAIN, - [FlashMessages.WentWrong]: TRY_AGAIN + [FlashMessages.WentWrong]: TRY_AGAIN, + [FlashMessages.MSTrophyMissing]: TRY_AGAIN } as const; type ToneStates = keyof typeof toneUrls;