X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/cc200171d7c40be3b204460f9c14d5d37e771866..767394f009b8b19c8522db4fa20638367c098221:/modules/core/m_kick.c diff --git a/modules/core/m_kick.c b/modules/core/m_kick.c index edec515..ecf1d21 100644 --- a/modules/core/m_kick.c +++ b/modules/core/m_kick.c @@ -27,7 +27,7 @@ #include "stdinc.h" #include "channel.h" #include "client.h" -#include "irc_string.h" +#include "match.h" #include "ircd.h" #include "numeric.h" #include "send.h" @@ -181,9 +181,6 @@ m_kick(struct Client *client_p, struct Client *source_p, int parc, const char *p sendto_server(client_p, chptr, CAP_TS6, NOCAPS, ":%s KICK %s %s :%s", use_id(source_p), chptr->chname, use_id(who), comment); - sendto_server(client_p, chptr, NOCAPS, CAP_TS6, - ":%s KICK %s %s :%s", - source_p->name, chptr->chname, who->name, comment); remove_user_from_channel(msptr); } else if (MyClient(source_p))