1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-07 23:23:12 +02:00

Make Snomask +s oper-only. Has always been confusing that it wasn't.

This commit is contained in:
Bram Matthys
2015-06-21 20:15:26 +02:00
parent c0f18b3e8e
commit 329700f745
+1 -1
View File
@@ -147,7 +147,7 @@ void umode_init(void)
SnomaskAdd(NULL, 'N', umode_allow_opers, &SNO_FNICKCHANGE);
SnomaskAdd(NULL, 'q', umode_allow_opers, &SNO_QLINE);
SnomaskAdd(NULL, 'S', umode_allow_opers, &SNO_SPAMF);
SnomaskAdd(NULL, 's', umode_allow_all, &SNO_SNOTICE);
SnomaskAdd(NULL, 's', umode_allow_opers, &SNO_SNOTICE);
SnomaskAdd(NULL, 'o', umode_allow_opers, &SNO_OPER);
}