Announce already here for no-op list teleports

This commit is contained in:
Jage9
2026-02-21 04:03:49 -05:00
parent c35d2e1189
commit f211f40d02
2 changed files with 9 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
// Maintainer-controlled web client version. // Maintainer-controlled web client version.
// Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2)
window.CHGRID_WEB_VERSION = "2026.02.21 R96"; window.CHGRID_WEB_VERSION = "2026.02.21 R97";
// Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid. // Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid.
window.CHGRID_TIME_ZONE = "America/Detroit"; window.CHGRID_TIME_ZONE = "America/Detroit";

View File

@@ -1474,6 +1474,10 @@ function handleListModeInput(code: string, key: string): void {
if (code === 'Enter') { if (code === 'Enter') {
const peer = state.peers.get(state.sortedPeerIds[state.listIndex]); const peer = state.peers.get(state.sortedPeerIds[state.listIndex]);
if (!peer) return; if (!peer) return;
if (state.player.x === peer.x && state.player.y === peer.y) {
updateStatus('Already here.');
return;
}
state.player.x = peer.x; state.player.x = peer.x;
state.player.y = peer.y; state.player.y = peer.y;
persistPlayerPosition(); persistPlayerPosition();
@@ -1530,6 +1534,10 @@ function handleListItemsModeInput(code: string, key: string): void {
if (code === 'Enter') { if (code === 'Enter') {
const item = state.items.get(state.sortedItemIds[state.itemListIndex]); const item = state.items.get(state.sortedItemIds[state.itemListIndex]);
if (!item) return; if (!item) return;
if (state.player.x === item.x && state.player.y === item.y) {
updateStatus('Already here.');
return;
}
state.player.x = item.x; state.player.x = item.x;
state.player.y = item.y; state.player.y = item.y;
persistPlayerPosition(); persistPlayerPosition();