]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operchans.cpp
Gah, im forgetting to SetMode!
[user/henk/code/inspircd.git] / src / modules / m_operchans.cpp
index 21e360b1da6e80a8f9a9bf2e0a965045017d5e07..01b55f9cc7f027b503737943dd88d270b293ecae 100644 (file)
@@ -66,10 +66,10 @@ class ModuleOperChans : public Module
                return 0;
        }
 
-        virtual void On005Numeric(std::string &output)
-        {
+       virtual void On005Numeric(std::string &output)
+       {
                InsertMode(output,"O",4);
-        }
+       }
        
        virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname)
        {
@@ -77,7 +77,7 @@ class ModuleOperChans : public Module
                {
                        if (chan)
                        {
-                               if (chan->IsCustomModeSet('O'))
+                               if (chan->IsModeSet('O'))
                                {
                                        WriteServ(user->fd,"520 %s %s :Only IRC operators may join the channel %s (+O is set)",user->nick, chan->name,chan->name);
                                        return 1;