aboutsummaryrefslogtreecommitdiff
path: root/webAO/client/checkCallword.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/client/checkCallword.ts')
-rw-r--r--webAO/client/checkCallword.ts16
1 files changed, 8 insertions, 8 deletions
diff --git a/webAO/client/checkCallword.ts b/webAO/client/checkCallword.ts
index f6cffbc..b7413f7 100644
--- a/webAO/client/checkCallword.ts
+++ b/webAO/client/checkCallword.ts
@@ -6,12 +6,12 @@ import { AO_HOST } from "./aoHost";
* @param {string} message
*/
export function checkCallword(message: string, sfxAudio: HTMLAudioElement) {
- client.callwords.forEach(testCallword);
- function testCallword(item: string) {
- if (item !== "" && message.toLowerCase().includes(item.toLowerCase())) {
- sfxAudio.pause();
- sfxAudio.src = `${AO_HOST}sounds/general/sfx-gallery.opus`;
- sfxAudio.play();
- }
+ client.callwords.forEach(testCallword);
+ function testCallword(item: string) {
+ if (item !== "" && message.toLowerCase().includes(item.toLowerCase())) {
+ sfxAudio.pause();
+ sfxAudio.src = `${AO_HOST}sounds/general/sfx-gallery.opus`;
+ sfxAudio.play();
}
-} \ No newline at end of file
+ }
+}