Simplify option picker announcements to value only

This commit is contained in:
Jage9
2026-02-20 17:58:15 -05:00
parent c6eac88e85
commit 6ba5a12d66
2 changed files with 2 additions and 2 deletions

View File

@@ -1751,7 +1751,7 @@ function handleItemPropertyOptionSelectModeInput(code: string): void {
code === 'ArrowDown'
? (state.itemPropertyOptionIndex + 1) % state.itemPropertyOptionValues.length
: (state.itemPropertyOptionIndex - 1 + state.itemPropertyOptionValues.length) % state.itemPropertyOptionValues.length;
updateStatus(`${propertyKey}: ${state.itemPropertyOptionValues[state.itemPropertyOptionIndex]}`);
updateStatus(state.itemPropertyOptionValues[state.itemPropertyOptionIndex]);
audio.sfxUiBlip();
return;
}