]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alltime.cpp
Move destruction logic for User and Spanningtree into cull()
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
index abf3c0b1b4fc2f8c14ff9d190f8236f6663a6f58..37f6a5fd245a08f841e7d9176fb5b1bf3f7368d8 100644 (file)
@@ -49,8 +49,8 @@ class Modulealltime : public Module
 {
        CommandAlltime mycommand;
  public:
-       Modulealltime(InspIRCd *Me)
-               : Module(Me), mycommand(this)
+       Modulealltime()
+               : mycommand(this)
        {
                ServerInstance->AddCommand(&mycommand);
        }
@@ -61,7 +61,7 @@ class Modulealltime : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Display timestamps from all servers connected to the network", VF_COMMON | VF_VENDOR, API_VERSION);
        }
 
 };