Make SCL rooms super secret
Some checks failed
Node.js CI / build (18.x) (push) Has been cancelled

This commit is contained in:
Kris Johnson 2025-09-11 18:00:58 -06:00
parent 4495da1c15
commit 336f1d58f1

View File

@ -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.");
}