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

@ -159,8 +159,11 @@ module.exports = class{
//Get schedule lock status
const queueLock = this.channel.queue.locked;
//Get chat buffer
const chatBuffer = this.channel.chatBuffer;
//Send off the metadata to our user's clients
this.emit("clientMetadata", {user: userObj, flairList, queue, queueLock});
this.emit("clientMetadata", {user: userObj, flairList, queue, queueLock, chatBuffer});
}
async sendSiteEmotes(){