From 329700f745c618a44e22a293cda7a2d1f2e14543 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sun, 21 Jun 2015 20:15:26 +0200 Subject: [PATCH] Make Snomask +s oper-only. Has always been confusing that it wasn't. --- src/umodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/umodes.c b/src/umodes.c index c83c2bfbf..9a04c6bdb 100644 --- a/src/umodes.c +++ b/src/umodes.c @@ -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); }