X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_opermodes.cpp;h=57eb8ae234ec1854bcb3cdea477a6bc8bbbc1733;hb=be36d92f3dcb0ac3772daebff43a5ecfe0a2d364;hp=4f1f0745918060ab3507d2bf8534a30ac11202ad;hpb=4b0f6c610f755e0cb93843d5a2a6c70336eafe39;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_opermodes.cpp b/src/modules/m_opermodes.cpp index 4f1f07459..57eb8ae23 100644 --- a/src/modules/m_opermodes.cpp +++ b/src/modules/m_opermodes.cpp @@ -2,20 +2,15 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * 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. * * --------------------------------------------------- */ -using namespace std; - #include #include #include "users.h" @@ -45,7 +40,7 @@ class ModuleModesOnOper : public Module List[I_OnPostOper] = List[I_OnRehash] = 1; } - virtual void OnRehash(const std::string ¶meter) + virtual void OnRehash(userrec* user, const std::string ¶meter) { DELETE(Conf); Conf = new ConfigReader(ServerInstance); @@ -58,7 +53,7 @@ class ModuleModesOnOper : public Module virtual Version GetVersion() { - return Version(1,0,0,1,VF_VENDOR,API_VERSION); + return Version(1,1,0,1,VF_VENDOR,API_VERSION); } virtual void OnPostOper(userrec* user, const std::string &opertype) @@ -98,12 +93,18 @@ class ModuleModesOnOper : public Module for (unsigned int k = 1; k < tokens.size(); k++) { modes[i] = (char*)tokens[k].c_str(); - ServerInstance->Log(DEBUG, "m_opermodes.so: got mode param: %s", modes[i]); i++; } } - - ServerInstance->Log(DEBUG, "m_opermodes.so: new modes for %s: %s", modes[0], modes[1]); + std::deque n; + Event rmode((char *)&n, NULL, "send_mode"); + n.push_back(user->nick); + n.push_back(modes[0]); + for (unsigned int j = 1; j < tokens.size(); j++) + { + n.push_back(modes[j]); + } + rmode.Send(ServerInstance); ServerInstance->SendMode(modes, size, user); } break;