From 085cd4278f0f495c6d008a3d157026b33a23b787 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 16 Jul 2006 15:08:59 +0000 Subject: Created new class irc::commasepstream. Will read comma seperated lists and works identically to irc::tokenstream It's re-entrant so we can run two of them together for JOIN git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4412 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_part.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/cmd_part.cpp') diff --git a/src/cmd_part.cpp b/src/cmd_part.cpp index 44c158205..39a962140 100644 --- a/src/cmd_part.cpp +++ b/src/cmd_part.cpp @@ -24,16 +24,15 @@ extern InspIRCd* ServerInstance; void cmd_part::Handle (const char** parameters, int pcnt, userrec *user) { + if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0)) + return; + if (pcnt > 1) { - if (ServerInstance->Parser->LoopCall(this,parameters,pcnt,user,0,pcnt-2,0)) - return; del_channel(user,parameters[0],parameters[1],false); } else { - if (ServerInstance->Parser->LoopCall(this,parameters,pcnt,user,0,pcnt-1,0)) - return; del_channel(user,parameters[0],NULL,false); } } -- cgit v1.3.1-10-gc9f91