]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_delayjoin.cpp
Check for windows drive letters on the start of paths and treat them the same as...
[user/henk/code/inspircd.git] / src / modules / m_delayjoin.cpp
index abdee355a40dc3e4b23c66f5c35f46816ac4e537..7d88c8be9d2980178d4e71130e4ff0f6cd0047e4 100644 (file)
@@ -36,9 +36,9 @@ class DelayJoinMode : public ModeHandler
                        {
                                if (channel->IsModeSet('D'))
                                {
-                                       /* Make all delayed join users visible, or if an op removes +D
-                                        * while users exist that havent spoken, they remain permenantly
-                                        * invisible on this channel!
+                                       /*
+                                        * Make all users visible, as +D is being removed. If we don't do this,
+                                        * they remain permanently invisible on this channel!
                                         */
                                        CUList* names = channel->GetUsers();
                                        for (CUListIter n = names->begin(); n != names->end(); ++n)
@@ -192,6 +192,7 @@ class ModuleDelayJoin : public Module
                user->Shrink("delayjoin");
        }
 
+       // .. is there a real need to duplicate WriteCommonExcept?
        void WriteCommonFrom(User *user, Channel* channel, const char* text, ...) CUSTOM_PRINTF(4, 5)
        {
                va_list argsPtr;