Volatile chat buffer for channel-only chats implemented.

This commit is contained in:
rainbow napkin 2025-06-11 08:27:56 -04:00
parent 8821b5cff9
commit 366df357b8
4 changed files with 27 additions and 4 deletions

View file

@ -99,6 +99,12 @@ class channel{
//Store queue lock status
this.queueLock = data.queueLock;
//For each chat held in the chat buffer
for(let chat of data.chatBuffer){
//Display the chat
this.chatBox.displayChat(chat);
}
}
setDefaults(force = false, processConfig = false){