From 2b7ac542b7b7a77ae86e9532f75cd98850cd3e97 Mon Sep 17 00:00:00 2001 From: KirbyRider1337 <39121695+KirbyRider1337@users.noreply.github.com> Date: Thu, 18 Jan 2024 18:01:15 -0500 Subject: [PATCH] The sound effects we care about are now bound to that site --- play.pokemonshowdown.com/src/battle-sound.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play.pokemonshowdown.com/src/battle-sound.ts b/play.pokemonshowdown.com/src/battle-sound.ts index 0cab469dc..52c079471 100644 --- a/play.pokemonshowdown.com/src/battle-sound.ts +++ b/play.pokemonshowdown.com/src/battle-sound.ts @@ -123,7 +123,7 @@ export const BattleSound = new class { } playEffect(url: string) { - this.playSound('https://' + Config.routes.psmain + '/' + url, this.muted ? 0 : this.effectVolume); + this.playSound(url, this.muted ? 0 : this.effectVolume); } playSound(url: string, volume: number) {