Fixed a bug where channel alerts would get dropped notice changed to chanalert()
This commit is contained in:
parent
5292ffb711
commit
9482505488
4 changed files with 19 additions and 14 deletions
|
@ -1 +1 @@
|
|||
17 354 12 1023336433 1027530574 1023336421 15750 147 1027791576
|
||||
17 364 12 1023336433 1027883645 1023336421 18429 147 1027791576
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
thor.de.eu.irc-chat.net 0 53 1027800178 4 1027794552 1027818850 1027744526 0 0 366
|
||||
statserv.irc-chat.net 0 6 1027744526 0 1027744526 1027818974 1027744526 0 0 28
|
||||
weltnetz.on.ca.irc-chat.net 0 28 1027802904 1 1027752754 1027818850 1027744526 0 0 205
|
||||
creative.oh.us.irc-chat.net 1 6 1027765374 1 1027744526 1027818850 1027744526 0 0 29
|
||||
services.irc-chat.net 0 21 1027744605 0 1027744526 1027818850 1027744526 0 0 111
|
||||
proxyscan.irc-chat.net 0 1 1027744526 0 1027744526 1027818850 1027744526 0 0 4
|
||||
hub.us.irc-chat.net 0 3 1027744526 3 1027744526 1027818850 1027744526 0 0 12
|
||||
mafia.oh.us.irc-chat.net 0 66 1027745500 3 1027745497 1027818850 1027744526 0 0 454
|
||||
mayhem.uk.eu.irc-chat.net 0 80 1027797767 3 1027744526 1027818850 1027744526 0 0 577
|
||||
dynamx.sg.as.irc-chat.net 0 56 1027799245 0 1027744526 1027818850 1027744526 0 0 433
|
||||
robotica.oh.us.irc-chat.net 0 33 1027787004 4 1027815005 1027818850 1027744526 0 0 278
|
||||
thor.de.eu.irc-chat.net 2 53 1027800178 4 1027794552 1027960850 1027744526 3 0 781
|
||||
statserv.irc-chat.net 0 6 1027744526 0 1027744526 1027818974 1027744526 0 0 34
|
||||
weltnetz.on.ca.irc-chat.net 0 35 1027892585 2 1027831145 1027818974 1027744526 0 0 471
|
||||
creative.oh.us.irc-chat.net 1 8 1027946011 1 1027744526 1027818974 1027744526 0 0 57
|
||||
services.irc-chat.net 0 22 1027842079 0 1027744526 1027818974 1027744526 1 0 179
|
||||
proxyscan.irc-chat.net 2 1 1027744526 0 1027744526 1027960767 1027744526 0 0 7
|
||||
hub.us.irc-chat.net 0 4 1027871524 3 1027744526 1027818974 1027744526 0 0 24
|
||||
mafia.oh.us.irc-chat.net 0 66 1027745500 3 1027745497 1027818974 1027744526 0 0 872
|
||||
mayhem.uk.eu.irc-chat.net 0 99 1027888903 3 1027744526 1027818974 1027744526 1 0 1186
|
||||
dynamx.sg.as.irc-chat.net 0 64 1027894693 1 1027830071 1027818974 1027744526 4 0 940
|
||||
robotica.oh.us.irc-chat.net 0 39 1027896215 4 1027815005 1027818974 1027744526 0 0 625
|
||||
|
|
|
@ -2,6 +2,11 @@ StatServ Module for NeoStats 2.x ChangeLog
|
|||
Shmad & ^Enigma & Fish^
|
||||
(S) denotes Shmad (E) denotes ^Enigma^
|
||||
(F) denotes Fish
|
||||
|
||||
|
||||
* Version 3.41 * July 29th, 2002 (S)
|
||||
- Fixed a bug where channel alerts would get dropped notice changed to chanalert()
|
||||
|
||||
* Version 3.4 * July 17th, 2002(F)
|
||||
- Ported to the new Module Event API
|
||||
- Fixed a bug with getting incorrect channel count and channel member count when loaded as a module after neo has already been running
|
||||
|
|
|
@ -172,7 +172,7 @@ int s_new_server(char **av, int ac) {
|
|||
daily.servers = stats_network.servers;
|
||||
daily.t_servers = time(NULL);
|
||||
}
|
||||
if (StatServ.onchan) notice(s_StatServ, "\2SERVER\2 %s has joined the Network at %s", s->name, s->uplink);
|
||||
if (StatServ.onchan) chanalert(s_StatServ, "\2SERVER\2 %s has joined the Network at %s", s->name, s->uplink);
|
||||
return 1;
|
||||
|
||||
}
|
||||
|
@ -184,7 +184,7 @@ int s_del_server(char **av, int ac) {
|
|||
s = findserver(av[0]);
|
||||
if (!s) return 0;
|
||||
DecreaseServers();
|
||||
if (StatServ.onchan) notice(s_StatServ, "\2SERVER\2 %s has left the Network at %s", s->name, s->uplink);
|
||||
if (StatServ.onchan) chanalert(s_StatServ, "\2SERVER\2 %s has left the Network at %s", s->name, s->uplink);
|
||||
ss = findstats(s->name);
|
||||
if (s->name != me.uplink)
|
||||
ss->numsplits = ss->numsplits +1;
|
||||
|
|
Reference in a new issue