From fb43abc6368d0cd2e0608d2fbbcbf849e71fe861 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Tue, 29 Oct 2024 15:25:45 -0500 Subject: [PATCH] Fixed messages not actually clearing. --- scripts/communityScripts/armored-chat/armored_chat.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/communityScripts/armored-chat/armored_chat.js b/scripts/communityScripts/armored-chat/armored_chat.js index 5b7ae054ed..3736922a69 100644 --- a/scripts/communityScripts/armored-chat/armored_chat.js +++ b/scripts/communityScripts/armored-chat/armored_chat.js @@ -165,6 +165,7 @@ switch (event.action) { case "erase_history": Settings.setValue("ArmoredChat-Messages", null); + messageHistory = []; _emitEvent({ type: "clear_messages", });