diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-02-06 16:41:28 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2023-02-06 16:41:28 +0100 |
| commit | ae0ef40f6f710596e2c2f26c51ff1a4ed0dea466 (patch) | |
| tree | 91b0205055ac5be48f517a3b10c9317496e24f95 /webAO/components/blip.js | |
| parent | 3e2b183f3700fd4afcc87341fc64fed2518858f1 (diff) | |
move blips to blips folder
Diffstat (limited to 'webAO/components/blip.js')
| -rw-r--r-- | webAO/components/blip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/components/blip.js b/webAO/components/blip.js index db6a784..6f896f5 100644 --- a/webAO/components/blip.js +++ b/webAO/components/blip.js @@ -7,7 +7,7 @@ import { AO_HOST } from '../client/aoHost' const createBlip = (amountOfBlips) => { for (let i = 0; i < amountOfBlips; i++) { const audio = document.createElement('audio') - const blipUrl = `${AO_HOST}sounds/general/sfx-blipmale.opus` + const blipUrl = `${AO_HOST}sounds/blips/male.opus` audio.setAttribute('class', 'blipSound') audio.setAttribute('src', blipUrl) document.body.appendChild(audio) |
