X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_operchans.cpp;h=01b55f9cc7f027b503737943dd88d270b293ecae;hb=9dd72b7003963d868a23da930a91300b49ab4959;hp=fb181d1f54930234dfcf0ff7a3667e729de85186;hpb=feaf72ecb48470114fbe3f3058b5f4b9622b88a5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp index fb181d1f5..01b55f9cc 100644 --- a/src/modules/m_operchans.cpp +++ b/src/modules/m_operchans.cpp @@ -24,11 +24,9 @@ using namespace std; /* $ModDesc: Provides support for oper-only chans via the +O channel mode */ -Server *Srv; - - class ModuleOperChans : public Module { + Server* Srv; public: ModuleOperChans(Server* Me) : Module::Module(Me) @@ -68,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) { @@ -79,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;