diff options
Diffstat (limited to 'src/rageircd.c')
-rw-r--r-- | src/rageircd.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/rageircd.c b/src/rageircd.c index 9afb8a94f..9bc5d3e0b 100644 --- a/src/rageircd.c +++ b/src/rageircd.c @@ -630,7 +630,7 @@ void anope_cmd_topic(char *whosets, char *chan, char *whosetit, send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, when, topic); } -void anope_cmd_vhost_off(char *nick) +void anope_cmd_vhost_off(User * u) { send_cmd(s_HostServ, "SVSMODE %s -x", u->nick); notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick); @@ -1596,4 +1596,10 @@ void anope_cmd_jupe(char *jserver, char *who, char *reason) new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); } +/* GLOBOPS - to handle old WALLOPS */ +void anope_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + #endif |