From a0a1b7967b17fba6f7ffb8dee6f104c729fe421e Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 22 May 2026 00:31:42 -0400 Subject: [PATCH] Tighten hand state announcement wording --- static/skald.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/skald.js b/static/skald.js index 12013ea..b8ac96d 100644 --- a/static/skald.js +++ b/static/skald.js @@ -1839,14 +1839,14 @@ function setUserStatus(id, elt, userinfo, notify) { elt.classList.add('user-status-raisehand'); elt.setAttribute('aria-label', `${username} (hand raised)`); if(notify && !wasRaised) { - announceUrgent(`${username} raised their hand`); + announceUrgent(`${username}: hand raised`); playNotificationSound('hand-raised'); } } else { elt.classList.remove('user-status-raisehand'); elt.setAttribute('aria-label', username); if(notify && wasRaised) { - announceUrgent(`${username} lowered their hand`); + announceUrgent(`${username}: hand lowered`); playNotificationSound('hand-lowered'); } }