Fix for bug #610 reported by ankit

git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@10595 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2008-09-24 19:02:04 +00:00
parent 0753e9aa9f
commit a0435a1cea

View File

@ -63,7 +63,7 @@ class cmd_uninvite : public command_t
if (!u->IsInvited(xname))
{
user->WriteServ("491 %s %s %s :Is not invited to channel %s",user->nick,u->nick,c->name,c->name);
user->WriteServ("505 %s %s %s :Is not invited to channel %s",user->nick,u->nick,c->name,c->name);
return CMD_FAILURE;
}
if (!c->HasUser(user))