X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_opermotd.cpp;h=a80aa513c0822ac3609f532b0b303ba0245ba7f7;hb=7c197db72eab03321e4f3e847054e13126520504;hp=2ab3e7dee5806c04c7472d75c27df529025ccdaa;hpb=71ad308979d9c9129507fdf85d4305fd12e18bea;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_opermotd.cpp b/src/modules/m_opermotd.cpp index 2ab3e7dee..a80aa513c 100644 --- a/src/modules/m_opermotd.cpp +++ b/src/modules/m_opermotd.cpp @@ -1,6 +1,15 @@ -// opermotd module by typobox43 - -using namespace std; +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ #include #include "users.h" @@ -30,6 +39,8 @@ CmdResult ShowOperMOTD(userrec* user) return CMD_SUCCESS; } +/** Handle /OPERMOTD + */ class cmd_opermotd : public command_t { public: @@ -81,7 +92,7 @@ class ModuleOpermotd : public Module virtual Version GetVersion() { - return Version(1,0,0,1,VF_VENDOR); + return Version(1,1,0,1,VF_VENDOR,API_VERSION); } void Implements(char* List) @@ -94,7 +105,7 @@ class ModuleOpermotd : public Module ShowOperMOTD(user); } - virtual void OnRehash(const std::string ¶meter) + virtual void OnRehash(userrec* user, const std::string ¶meter) { LoadOperMOTD(); }