mirror of
https://github.com/anope/anope.git
synced 2026-06-27 04:26:38 +02:00
Send only the newly formatted users string to do_sjoin when using inspircd12, not the old one and the new one, as this implies the old users are parameters for modes, which makes mode manager unhappy
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2717 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -581,9 +581,10 @@ endnick:
|
||||
newav[0] = av[1]; /* timestamp */
|
||||
newav[1] = av[0]; /* channel name */
|
||||
|
||||
int i ;
|
||||
int i;
|
||||
|
||||
for (i = 2; i != ac; i++)
|
||||
/* We want to replace the last string with our newly formatted user string */
|
||||
for (i = 2; i != ac - 1; i++)
|
||||
{
|
||||
newav[i] = av[i];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user