diff options
Diffstat (limited to 'src/rageircd.c')
-rw-r--r-- | src/rageircd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rageircd.c b/src/rageircd.c index 555cf58db..66299805b 100644 --- a/src/rageircd.c +++ b/src/rageircd.c @@ -21,6 +21,7 @@ const char version_protocol[] = "RageIRCd 2.0.x"; /* Not all ircds use +f for their flood/join throttle system */ const char flood_mode_char_set[] = ""; /* mode char for FLOOD mode on set */ const char flood_mode_char_remove[] = ""; /* mode char for FLOOD mode on remove */ +int UseTSMODE = 1; /* Rage beta 6 does not send TSMODE but uses it so we do this to enable it */ IRCDVar ircd[] = { @@ -718,6 +719,7 @@ void anope_cmd_svinfo() void anope_cmd_capab() { + /* future versions will support TSMODE */ send_cmd(NULL, "CAPAB BURST UNCONNECT SSJ3 SN2 VHOST"); } |