mirror of
https://github.com/anope/anope.git
synced 2026-06-30 17:26:39 +02:00
BUILD : 1.7.5 (393) BUGS : N/A NOTES : Ultimate3 EOBURST support
git-svn-id: svn://svn.anope.org/anope/trunk@393 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@258 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
3fb17634a0
commit
65ed982a17
@@ -634,6 +634,7 @@ void moduleAddIRCDMsgs(void) {
|
||||
m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m);
|
||||
m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m);
|
||||
m = createMessage("SMODE", anope_event_mode); addCoreMessage(IRCD,m);
|
||||
m = createMessage("EOBURST", anope_event_eob); addCoreMessage(IRCD,m);
|
||||
}
|
||||
|
||||
/* *INDENT-ON* */
|
||||
@@ -1689,6 +1690,21 @@ int anope_event_error(char *source, int ac, char **av)
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
|
||||
int anope_event_eob(char *source, int ac, char **av)
|
||||
{
|
||||
Server *s;
|
||||
|
||||
if (ac == 1) {
|
||||
s = findserver(servlist, av[0]);
|
||||
if (s) {
|
||||
s->sync = 1;
|
||||
}
|
||||
}
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
|
||||
int anope_event_burst(char *source, int ac, char **av)
|
||||
{
|
||||
Server *s;
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="5"
|
||||
VERSION_BUILD="392"
|
||||
VERSION_BUILD="393"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.5 (393)
|
||||
# BUGS : N/A
|
||||
# NOTES : Ultimate3 EOBURST support
|
||||
#
|
||||
# BUILD : 1.7.5 (392)
|
||||
# BUGS : N/A
|
||||
# NOTES : More code tidy with strict enabled, some clean up of Unreal32
|
||||
|
||||
Reference in New Issue
Block a user