diff options
-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 |