This commit is contained in:
stskeeps 2000-10-29 12:17:49 +00:00
parent b6e61e1302
commit 8735a0f6bf
3 changed files with 5 additions and 3 deletions

View file

@ -668,3 +668,4 @@
- Fixed a linking bug (where did that come from)
- Fixed bug where duplicate numerics could occur
- Fixed the hashing bug (thank you ROXnet ...)
- Fixed a wierd channel message bug

View file

@ -1836,8 +1836,8 @@ static int m_message(cptr, sptr, parc, parv, notice)
#ifdef STRIPBADWORDS
if (!(IsULine(acptr) || IsULine(sptr)) &&
IsFilteringWords(acptr))
sendto_prefix_one(acptr, sptr,
":%s %s %s :%s", parv[0], cmd, nick,
sendto_message_one(acptr, sptr,
parv[0], cmd, nick,
stripbadwords_message(parv[2]));
else
#endif

View file

@ -413,7 +413,8 @@ void sendto_channelprefix_butone_tok(aClient *one, aClient *from, aChannel *chpt
i = acptr->from->fd;
if (MyConnect(acptr) && IsRegisteredUser(acptr))
{
sendto_prefix_one(acptr, from, "%s", ccmd);
sendto_prefix_one(acptr, from, ":%s %s %s :%s"
from->name, cmd, nick, text);
sentalong[i] = 1;
}
else