diff options
| author | 2006-07-16 15:08:59 +0000 | |
|---|---|---|
| committer | 2006-07-16 15:08:59 +0000 | |
| commit | 085cd4278f0f495c6d008a3d157026b33a23b787 (patch) | |
| tree | b1c5df846e0c74891546f24ebd5f41040dc86dea /src/cmd_notice.cpp | |
| parent | Adjustment (diff) | |
| download | inspircd++-085cd4278f0f495c6d008a3d157026b33a23b787.tar.gz inspircd++-085cd4278f0f495c6d008a3d157026b33a23b787.tar.bz2 inspircd++-085cd4278f0f495c6d008a3d157026b33a23b787.zip | |
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
Diffstat (limited to 'src/cmd_notice.cpp')
| -rw-r--r-- | src/cmd_notice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_notice.cpp b/src/cmd_notice.cpp index 434594df9..b9bd536d0 100644 --- a/src/cmd_notice.cpp +++ b/src/cmd_notice.cpp @@ -43,7 +43,7 @@ void cmd_notice::Handle (const char** parameters, int pcnt, userrec *user) user->idle_lastmsg = TIME; - if (ServerInstance->Parser->LoopCall(this,parameters,pcnt,user,0,pcnt-2,0)) + if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0)) return; if ((parameters[0][0] == '$') && ((*user->oper) || (is_uline(user->server)))) { |
