From 336f1d58f1bb6cb68cf24a8961ba54c998b584bb Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Thu, 11 Sep 2025 18:00:58 -0600 Subject: [PATCH] Make SCL rooms super secret --- server/chat-plugins/chatlog.ts | 3 +++ 1 file changed, 3 insertions(+) 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."); }