]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setidle.cpp
Fix two modules set VF_COMMON incorrectly, closes bug #587
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
index 89e8c9a1798fdd9d39bd4141f54075e325bb95e8..cb25751240daef2cc28a64db35a63f6bd426f9d4 100644 (file)
@@ -54,19 +54,19 @@ class ModuleSetIdle : public Module
        ModuleSetIdle(InspIRCd* Me)
                : Module(Me)
        {
-               
+
                mycommand = new CommandSetidle(ServerInstance);
                ServerInstance->AddCommand(mycommand);
 
        }
-       
+
        virtual ~ModuleSetIdle()
        {
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
        }
 };