X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fm_wallusers.c;h=e5e0cdb61762d9846fb385a51e31ae414e4c16a1;hb=7e4678d9a8ac8fee8baa0aa8c4cf699550f5ba82;hp=b453e8870788d4b042c180e73dc928e2205d5189;hpb=06822335f78f58e7c772077cc3ec3a172f31fc5c;p=ircu2.10.12-pk.git diff --git a/ircd/m_wallusers.c b/ircd/m_wallusers.c index b453e88..e5e0cdb 100644 --- a/ircd/m_wallusers.c +++ b/ircd/m_wallusers.c @@ -106,7 +106,7 @@ int ms_wallusers(struct Client* cptr, struct Client* sptr, int parc, char* parv[ if (EmptyString(message)) return need_more_params(sptr, "WALLUSERS"); - sendcmdto_flag_butone(sptr, CMD_WALLUSERS, cptr, FLAGS_WALLOP, ":%s", + sendwallto_group_butone(sptr, WALL_WALLUSERS, cptr, "%s", message); return 0; } @@ -123,7 +123,7 @@ int mo_wallusers(struct Client* cptr, struct Client* sptr, int parc, char* parv[ if (EmptyString(message)) return need_more_params(sptr, "WALLUSERS"); - sendcmdto_flag_butone(sptr, CMD_WALLUSERS, 0, FLAGS_WALLOP, ":%s", message); + sendwallto_group_butone(sptr, WALL_WALLUSERS, 0, "%s", message); return 0; }