From e0fc7985388e2cf4e83f5cd47f498f64b63d2069 Mon Sep 17 00:00:00 2001 From: Jage9 Date: Sat, 21 Feb 2026 01:19:46 -0500 Subject: [PATCH] Use teleport.ogg for teleport movement sound --- client/public/version.js | 2 +- client/src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/public/version.js b/client/public/version.js index 60187e4..005c501 100644 --- a/client/public/version.js +++ b/client/public/version.js @@ -1,3 +1,3 @@ // Maintainer-controlled web client version. // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) -window.CHGRID_WEB_VERSION = "2026.02.21 R73"; +window.CHGRID_WEB_VERSION = "2026.02.21 R74"; diff --git a/client/src/main.ts b/client/src/main.ts index d74beed..5d0c912 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -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();