X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_alltime.cpp;h=37f6a5fd245a08f841e7d9176fb5b1bf3f7368d8;hb=4a64082e31c3c3dfa97a1edfb8a3c97fe8d32ea7;hp=abf3c0b1b4fc2f8c14ff9d190f8236f6663a6f58;hpb=069a2ef21425007d092342c8c11ec28da2f410d7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp index abf3c0b1b..37f6a5fd2 100644 --- a/src/modules/m_alltime.cpp +++ b/src/modules/m_alltime.cpp @@ -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); } };