diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-03-03 15:13:51 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-03-03 15:13:51 +0000 |
commit | 7a1217e97c083df916629dc2cc7deab7345fa9a8 (patch) | |
tree | 8e0a0bad4c4206445c660b626df8ca43d153a0aa | |
parent | efcd7636dc487ceb6c5925794990468e5528631a (diff) |
Fix typo in inspircd11 module preventing it from connecting even if m_hidechans is loaded on InspIRCd.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2141 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 5748f62a1..94ec42c24 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -1183,7 +1183,7 @@ int anope_event_capab(const char *source, int ac, const char **av) has_inviteexceptionmod = 1; } if (strstr(av[1], "m_hidechans.so")) { - has_hidechansmod = 0; + has_hidechansmod = 1; } } else if (strcasecmp(av[0], "END") == 0) { if (!has_globopsmod) { |