]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ojoin.cpp
Skip module tags which don't have a module specified.
[user/henk/code/inspircd.git] / src / modules / m_ojoin.cpp
index 20ac41685bed85cab599d9bf9396fb913d9f7126..8bc264622da870e16d9ac1fbb2710a4d8f6ce450 100644 (file)
@@ -33,9 +33,11 @@ class CommandOjoin : public SplitCommand
        bool notice;
        bool op;
        ModeHandler* npmh;
+       ChanModeReference opmode;
        CommandOjoin(Module* parent, ModeHandler& mode)
                : SplitCommand(parent, "OJOIN", 1)
                , npmh(&mode)
+               , opmode(parent, "op")
        {
                flags_needed = 'o';
                syntax = "<channel>";
@@ -73,8 +75,8 @@ class CommandOjoin : public SplitCommand
                        // they're already in the channel
                        Modes::ChangeList changelist;
                        changelist.push_add(npmh, user->nick);
-                       if (op)
-                               changelist.push_add(ServerInstance->Modes->FindMode('o', MODETYPE_CHANNEL), user->nick);
+                       if (op && opmode)
+                               changelist.push_add(*opmode, user->nick);
                        ServerInstance->Modes->Process(ServerInstance->FakeClient, channel, NULL, changelist);
                }
                return CMD_SUCCESS;
@@ -121,8 +123,8 @@ class ModuleOjoin : public Module
                if (mycommand.active)
                {
                        privs += np.GetModeChar();
-                       if (mycommand.op)
-                               privs += 'o';
+                       if (mycommand.op && mycommand.opmode)
+                               privs += mycommand.opmode->IsPrefixMode()->GetPrefix();
                        return MOD_RES_ALLOW;
                }