remove todos that no long apply

This commit is contained in:
Holly Stubbs 2022-02-22 10:31:19 +00:00
parent aef1f68cc8
commit c5e2f94b66
Signed by: tgpholly
GPG key ID: B8583C4B7D18119E

View file

@ -51,7 +51,6 @@ setInterval(() => {
}, 10000);
// An array containing the last 15 messages in chat
// TODO: Bother making this
global.chatHistory = [];
global.addChatMessage = function(msg) {
if (global.chatHistory.length == 15) {
@ -65,7 +64,6 @@ global.addChatMessage = function(msg) {
global.StreamsHandler = new Streams();
// An array containing all chat channels
// TODO: Send user chat channels and not have osu! crash
global.channels = [
{ channelName:"#osu", channelTopic:"The main channel", channelUserCount: 0, locked: false },
{ channelName:"#userlog", channelTopic:"Log about stuff doing go on yes very", channelUserCount: 0, locked: false },