From fd338429a33b0934878ebe5f2a0e8f310390c68c Mon Sep 17 00:00:00 2001 From: DJDavid98 Date: Sun, 15 Oct 2023 08:20:03 +0200 Subject: [PATCH] Add additional chat tts substitution --- src/js/utils/chat-messages.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/utils/chat-messages.ts b/src/js/utils/chat-messages.ts index e1c2589..beba969 100644 --- a/src/js/utils/chat-messages.ts +++ b/src/js/utils/chat-messages.ts @@ -175,6 +175,7 @@ export const ttsMessageSubstitutions = (input: string): string => .replace(/\blmao\b/gi, 'laughing my ass off') .replace(/\bwip\b/gi, 'work-in-progress') .replace(/\bsup\b/gi, "what's up") + .replace(/\bhru\b/gi, 'how are you') .replace(/\bggwp\b/gi, 'good game, well played') .replace(/\bgg(s)?\b/gi, 'good game$1') .replace(/\bez\b/gi, 'easy')