diff options
| author | 2006-03-12 14:49:30 +0000 | |
|---|---|---|
| committer | 2006-03-12 14:49:30 +0000 | |
| commit | ced58c3be3f1da8dcf70c3904e5fe4bdaabf0e3d (patch) | |
| tree | dfe3ef7f3758ba7ae95fd1ae70c93d26238b7917 /src/cmd_names.cpp | |
| parent | *NEEDS TESTING* changed binarymodes to use the custom_modes entries (diff) | |
Renamed to chanrec::modes
Renamed IsCustomModeSet to IsModeSet
GetModeParameter will now return the channel limit (as a string) for a request for mode 'l' and the channel key for a request for mode 'k'.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3692 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_names.cpp')
| -rw-r--r-- | src/cmd_names.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_names.cpp b/src/cmd_names.cpp index 2eb046eac..e5e83a70f 100644 --- a/src/cmd_names.cpp +++ b/src/cmd_names.cpp @@ -76,7 +76,7 @@ void cmd_names::Handle (char **parameters, int pcnt, userrec *user) c = FindChan(parameters[0]); if (c) { - if ((c->custom_modes[CM_SECRET]) && (!c->HasUser(user))) + if ((c->modes[CM_SECRET]) && (!c->HasUser(user))) { WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, c->name); return; |
