diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-13 15:05:23 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-13 15:05:23 +0000 |
commit | 65ed982a17ae7a3360b14cd459a35d581cf67a38 (patch) | |
tree | 3986da4cdac57a7b262078a157909921bc7e6b70 | |
parent | 3fb17634a05f1bd4155d2b7fd851c91fc516d1df (diff) |
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
-rw-r--r-- | src/ultimate3.c | 16 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 21 insertions, 1 deletions
diff --git a/src/ultimate3.c b/src/ultimate3.c index 530266ac7..b62078e06 100644 --- a/src/ultimate3.c +++ b/src/ultimate3.c @@ -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; diff --git a/version.log b/version.log index 6fb65d2c3..93707d7b1 100644 --- a/version.log +++ b/version.log @@ -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 |