]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_operflood.cpp
Remove unneccessary temp value which caused a win32 problem by using uint32_t type.
[user/henk/code/inspircd.git] / src / modules / m_operflood.cpp
index ef09ebd279309fa0ef708a4846cc01b9f9aa6eed..c9216cba8f3dcf2306cbccb6c860bcbdcbd4d53f 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -22,25 +22,19 @@ class ModuleOperFlood : public Module
 public:
        ModuleOperFlood(InspIRCd * Me) : Module(Me) {}
 
-       void Implements(char * List)
-       {
-               List[I_OnPostOper] = 1;
-               Implementation eventlist[] = { I_OnPostOper };
-               ServerInstance->Modules->Attach(eventlist, this, 1);
-       }
 
        Version GetVersion()
        {
-               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+               return Version(1,2,0,1,VF_VENDOR,API_VERSION);
        }
 
-       void OnPostOper(User* user, const std::string &opertype)
+       void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
        {
                if(!IS_LOCAL(user))
                        return;
 
                user->ExemptFromPenalty = true;
-               user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick);
+               user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick.c_str());
        }
 };