Fix teleport enter audio and localize wheel result messages

This commit is contained in:
Jage9
2026-02-21 01:26:18 -05:00
parent e0fc798538
commit a63b84f6a1
3 changed files with 31 additions and 11 deletions

View File

@@ -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 R74";
window.CHGRID_WEB_VERSION = "2026.02.21 R75";

View File

@@ -1543,7 +1543,6 @@ function handleListModeInput(code: string): void {
signaling.send({ type: 'update_position', x: peer.x, y: peer.y });
state.mode = 'normal';
updateStatus(`Moved to ${peer.nickname}.`);
audio.sfxUiConfirm();
return;
}
@@ -1582,7 +1581,6 @@ function handleListItemsModeInput(code: string): void {
signaling.send({ type: 'update_position', x: item.x, y: item.y });
state.mode = 'normal';
updateStatus(`Moved to ${itemLabel(item)}.`);
audio.sfxUiConfirm();
return;
}
if (code === 'Escape') {