diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-24 21:49:11 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-24 21:49:11 +0000 |
commit | 0779326cce15f465b3c535f5e227d01d59e3617d (patch) | |
tree | 7b97ae6d6b805d2ed600847199485fabe3e825fd /src | |
parent | e6acd6dc966e86d8f81ef4ebe374d01d917b1a6c (diff) |
Off by one?
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1791 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/inspircd12.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index dc46f95e2..4698a61ca 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -841,7 +841,7 @@ int anope_event_fjoin(const char *source, int ac, const char **av) *nicklist = '\0'; *prefixandnick = '\0'; - if (ac <= 4) + if (ac <= 3) return MOD_CONT; curnick = myStrGetToken(av[ac - 1], ' ', curtoken); |