]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operflood.cpp
Fix two modules set VF_COMMON incorrectly, closes bug #587
[user/henk/code/inspircd.git] / src / modules / m_operflood.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "users.h"
16 #include "channels.h"
17 #include "modules.h"
18
19 /* $ModDesc: Removes flood limits from users upon opering up. */
20 class ModuleOperFlood : public Module
21 {
22 public:
23         ModuleOperFlood(InspIRCd * Me) : Module(Me)
24         {
25                 Implementation eventlist[] = { I_OnPostOper };
26                 ServerInstance->Modules->Attach(eventlist, this, 1);
27         }
28
29
30         Version GetVersion()
31         {
32                 return Version(1,2,0,1,VF_VENDOR,API_VERSION);
33         }
34
35         void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
36         {
37                 if(!IS_LOCAL(user))
38                         return;
39
40                 user->ExemptFromPenalty = true;
41                 user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick.c_str());
42         }
43 };
44
45 MODULE_INIT(ModuleOperFlood)