]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_knock.cpp
Fix all typos (not as fun as 'kill all humans' but meh, beggers cant be choosers)
[user/henk/code/inspircd.git] / src / modules / m_knock.cpp
index 2a9fd30fa6c9ea6478f0d5f3228a06e1439a2dc9..0629f102332fd4e45fc34b54506bc167519db31f 100644 (file)
@@ -38,9 +38,16 @@ class cmd_knock : public command_t
        void Handle (char **parameters, int pcnt, userrec *user)
        {
                chanrec* c = Srv->FindChannel(parameters[0]);
+
+               if (!c)
+               {
+                       WriteServ(user->fd,"401 %s %s :No such channel",user->nick, parameters[0]);
+                       return;
+               }
+
                std::string line = "";
 
-               if (c->IsCustomModeSet('K'))
+               if (c->IsModeSet('K'))
                {
                        WriteServ(user->fd,"480 %s :Can't KNOCK on %s, +K is set.",user->nick, c->name);
                        return;
@@ -52,7 +59,7 @@ class cmd_knock : public command_t
                }
                line = line + std::string(parameters[pcnt-1]);
 
-               if (c->binarymodes & CM_INVITEONLY)
+               if (c->modes[CM_INVITEONLY])
                {
                        WriteChannelWithServ((char*)Srv->GetServerName().c_str(),c,"NOTICE %s :User %s is KNOCKing on %s (%s)",c->name,user->nick,c->name,line.c_str());
                        WriteServ(user->fd,"NOTICE %s :KNOCKing on %s",user->nick,c->name);
@@ -84,10 +91,10 @@ class ModuleKnock : public Module
                List[I_On005Numeric] = List[I_OnExtendedMode] = 1;
        }
 
-        virtual void On005Numeric(std::string &output)
-        {
+       virtual void On005Numeric(std::string &output)
+       {
                InsertMode(output,"K",4);
-        }
+       }
 
        virtual ~ModuleKnock()
        {