From 7aea4129848be9ad096281057bb2f1d49c96b80a Mon Sep 17 00:00:00 2001 From: Ada Date: Tue, 24 Jun 2025 00:58:54 +1000 Subject: [PATCH] Give the typing indicator channel a more generic name for later --- scripts/communityScripts/armored-chat/armored_chat.js | 4 ++-- scripts/communityScripts/chatBubbles/chatBubbles.js | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/scripts/communityScripts/armored-chat/armored_chat.js b/scripts/communityScripts/armored-chat/armored_chat.js index 624786044b..6092678e72 100644 --- a/scripts/communityScripts/armored-chat/armored_chat.js +++ b/scripts/communityScripts/armored-chat/armored_chat.js @@ -203,7 +203,7 @@ case "start_typing": if (!isTyping) { Messages.sendMessage( - "ChatBubbles-Typing", + "Chat-Typing", JSON.stringify({ action: "typing_start", position: MyAvatar.position, @@ -215,7 +215,7 @@ case "end_typing": if (isTyping) { Messages.sendMessage( - "ChatBubbles-Typing", + "Chat-Typing", JSON.stringify({ action: "typing_stop" }) diff --git a/scripts/communityScripts/chatBubbles/chatBubbles.js b/scripts/communityScripts/chatBubbles/chatBubbles.js index c2cb33fba0..1404d97424 100644 --- a/scripts/communityScripts/chatBubbles/chatBubbles.js +++ b/scripts/communityScripts/chatBubbles/chatBubbles.js @@ -10,9 +10,7 @@ const CHAT_CHANNEL = "chat"; -// can't reuse the chat channel because ArmoredChat passes -// anything on "chat" into FloofChat-Notif and throws an error -const TYPING_NOTIFICATION_CHANNEL = "ChatBubbles-Typing"; +const TYPING_NOTIFICATION_CHANNEL = "Chat-Typing"; const CONFIG_UPDATE_CHANNEL = "ChatBubbles-Config"; const BUBBLE_LIFETIME_SECS = 10;