Skip to content

Commit

Permalink
Fix for bug #610 reported by ankit, numeric changed to 505
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10596 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Sep 24, 2008
1 parent 9526135 commit 0bee078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/m_uninvite.cpp
Expand Up @@ -59,7 +59,7 @@ class CommandUninvite : public Command

if (!u->IsInvited(xname))
{
user->WriteNumeric(491, "%s %s %s :Is not invited to channel %s", user->nick.c_str(), u->nick.c_str(), c->name.c_str(), c->name.c_str());
user->WriteNumeric(505, "%s %s %s :Is not invited to channel %s", user->nick.c_str(), u->nick.c_str(), c->name.c_str(), c->name.c_str());
return CMD_FAILURE;
}
if (!c->HasUser(user))
Expand Down

0 comments on commit 0bee078

Please sign in to comment.