1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 11:03:13 +02:00

Off by one?

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1791 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2008-11-24 21:49:11 +00:00
parent e6acd6dc96
commit 0779326cce
+1 -1
View File
@@ -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);