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

svsmode: Don't show user their uid in MODE

This commit is contained in:
Adam
2016-02-12 09:52:30 -05:00
parent d8ffeefd92
commit 2ae7fc2ef6
+1 -1
View File
@@ -561,7 +561,7 @@ int do_svsmode(aClient *cptr, aClient *sptr, int parc, char *parv[], int show_c
char buf[BUFSIZE];
send_umode(NULL, acptr, setflags, ALL_UMODES, buf);
if (MyClient(acptr) && buf[0] && buf[1])
sendto_one(acptr, ":%s MODE %s :%s", sptr->name, parv[1], buf);
sendto_one(acptr, ":%s MODE %s :%s", sptr->name, acptr->name, buf);
}
VERIFY_OPERCOUNT(acptr, "svsmodeX");