mirror of
https://github.com/pissnet/pissircd.git
synced 2025-07-29 14:32:25 +01:00
.
This commit is contained in:
parent
b6e61e1302
commit
8735a0f6bf
3 changed files with 5 additions and 3 deletions
1
Changes
1
Changes
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue