diff options
Diffstat (limited to 'src/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 3eeb31bbd..0919fabbe 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -110,6 +110,7 @@ IRCDVar myIrcd[] = { 0, /* CIDR channelbans */ 1, /* +j */ CMODE_j, /* +j Mode */ + 0, /* Use delayed client introduction. */ } , {NULL} @@ -1114,6 +1115,11 @@ void unreal_cmd_connect(int servernum) unreal_cmd_server(ServerName, 1, ServerDesc); } +void unreal_cmd_bob() +{ + /* Not used */ +} + /* Events */ int anope_event_ping(char *source, int ac, char **av) @@ -2197,6 +2203,7 @@ void moduleAddAnopeCmds() pmodule_cmd_svsnick(unreal_cmd_svsnick); pmodule_cmd_vhost_on(unreal_cmd_vhost_on); pmodule_cmd_connect(unreal_cmd_connect); + pmodule_cmd_bob(unreal_cmd_bob); pmodule_cmd_svshold(unreal_cmd_svshold); pmodule_cmd_release_svshold(unreal_cmd_release_svshold); pmodule_cmd_unsgline(unreal_cmd_unsgline); |