X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/13ae2f4b6904ebf7b8160902f9ffeb80f7585ed2..cddb360c6b7b47b1189cd247bfa253b80f692e5f:/modules/m_wallops.c?ds=sidebyside diff --git a/modules/m_wallops.c b/modules/m_wallops.c index f468bff..1a591ab 100644 --- a/modules/m_wallops.c +++ b/modules/m_wallops.c @@ -71,8 +71,6 @@ mo_operwall(struct Client *client_p, struct Client *source_p, int parc, const ch sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", parv[1]); sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s OPERWALL :%s", use_id(source_p), parv[1]); - sendto_server(client_p, NULL, NOCAPS, CAP_TS6, ":%s OPERWALL :%s", - source_p->name, parv[1]); return 0; } @@ -88,8 +86,6 @@ ms_operwall(struct Client *client_p, struct Client *source_p, int parc, const ch { sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s OPERWALL :%s", use_id(source_p), parv[1]); - sendto_server(client_p, NULL, NOCAPS, CAP_TS6, ":%s OPERWALL :%s", - source_p->name, parv[1]); sendto_wallops_flags(UMODE_OPERWALL, source_p, "OPERWALL - %s", parv[1]); return 0; @@ -124,8 +120,6 @@ ms_wallops(struct Client *client_p, struct Client *source_p, int parc, const cha sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s WALLOPS :%s", use_id(source_p), parv[1]); - sendto_server(client_p, NULL, NOCAPS, CAP_TS6, ":%s WALLOPS :%s", - source_p->name, parv[1]); return 0; }