diff --git a/server/chat-plugins/chatlog.ts b/server/chat-plugins/chatlog.ts index 286f709ec7..3b269b8d41 100644 --- a/server/chat-plugins/chatlog.ts +++ b/server/chat-plugins/chatlog.ts @@ -989,6 +989,9 @@ export const pages: Chat.PageTable = { if (roomid.startsWith('spl') && roomid !== 'splatoon') { throw new Chat.ErrorMessage("SPL team discussions are super secret."); } + if (roomid.startsWith('scl')) { + throw new Chat.ErrorMessage("SCL team discussions are super secret."); + } if (roomid.startsWith('wcop')) { throw new Chat.ErrorMessage("WCOP team discussions are super secret."); }