diff options
| author | 2008-05-05 10:05:47 +0000 | |
|---|---|---|
| committer | 2008-05-05 10:05:47 +0000 | |
| commit | 287e4973e009755c771add3e3995392b1612c425 (patch) | |
| tree | d82af4d4887dd5acbfaf875b5a28028b3c659dc3 /src/commands/cmd_privmsg.cpp | |
| parent | Fix warning (diff) | |
| download | inspircd++-287e4973e009755c771add3e3995392b1612c425.tar.gz inspircd++-287e4973e009755c771add3e3995392b1612c425.tar.bz2 inspircd++-287e4973e009755c771add3e3995392b1612c425.zip | |
Calling wrong loopcall overloaded method, due to hasty search and replace earlier
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9641 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_privmsg.cpp')
| -rw-r--r-- | src/commands/cmd_privmsg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_privmsg.cpp b/src/commands/cmd_privmsg.cpp index a3d64f084..1c4ba277e 100644 --- a/src/commands/cmd_privmsg.cpp +++ b/src/commands/cmd_privmsg.cpp @@ -28,7 +28,7 @@ CmdResult CommandPrivmsg::Handle (const std::vector<std::string>& parameters, Us user->idle_lastmsg = ServerInstance->Time(); - if (ServerInstance->Parser->LoopCall(user, this, parameters, parameters.size(), 0)) + if (ServerInstance->Parser->LoopCall(user, this, parameters, 0)) return CMD_SUCCESS; if ((parameters[0][0] == '$') && (IS_OPER(user) || ServerInstance->ULine(user->server))) |
