Use teleport.ogg for teleport movement sound

This commit is contained in:
Jage9
2026-02-21 01:19:46 -05:00
parent 67b8644624
commit e0fc798538
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ const SYSTEM_SOUND_URLS = {
} as const;
const FOOTSTEP_SOUND_URLS = Array.from({ length: 11 }, (_, index) => withBase(`sounds/step-${index + 1}.ogg`));
const FOOTSTEP_GAIN = 0.7;
const TELEPORT_SOUND_URL = withBase('sounds/step-1.ogg');
const TELEPORT_SOUND_URL = withBase('sounds/teleport.ogg');
const WALL_SOUND_URL = withBase('sounds/wall.ogg');
const state = createInitialState();