diff options
author | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-17 14:22:08 +0000 |
---|---|---|
committer | dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b <dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-08-17 14:22:08 +0000 |
commit | 26ea4bc11b4e07bbeb95031f2337ff695f83cc16 (patch) | |
tree | 3e6fbe4fc0aa567e84d9cff619a0c63261dd0e6f /src/send.c | |
parent | e8852537443edadedc857d974590cdd94b26a179 (diff) |
BUILD : 1.7.5 (325) BUGS : 128 139 146 147 148 NOTES : Applied patch supplied by Trystan to fix bugs listed above.
git-svn-id: svn://svn.anope.org/anope/trunk@325 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@202 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/send.c')
-rw-r--r-- | src/send.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/send.c b/src/send.c index 0c21b65d3..a0284323a 100644 --- a/src/send.c +++ b/src/send.c @@ -230,10 +230,15 @@ void send_mode(const char *source, const char *on, const char *fmt, ...) vsnprintf(buf, sizeof(buf), fmt, args); #ifdef IRC_BAHAMUT + +/* Ultimate3 doesn't send TS Mode - doing so will cause modes not to send */ +/* btw - this is used by channel setting was well - TSL */ +#if !defined(IRC_ULTIMATE3) if (uplink_capab & CAPAB_TSMODE) send_cmd(source, "MODE %s 0 %s", on, buf); else #endif +#endif send_cmd(source, "MODE %s %s", on, buf); } |