mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 19:19:02 -04:00
wtf at the line endings in this bag of spanners
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8535 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
198cc96a62
commit
6f1b91fb14
@ -1,47 +1,47 @@
|
||||
/* +------------------------------------+
|
||||
* | 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 "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
|
||||
/* $ModDesc: Removes flood limits from users upon opering up. */
|
||||
class ModuleOperFlood : public Module
|
||||
{
|
||||
public:
|
||||
ModuleOperFlood(InspIRCd * Me) : Module(Me) {}
|
||||
|
||||
void Implements(char * List)
|
||||
{
|
||||
List[I_OnPostOper] = 1;
|
||||
/* +------------------------------------+
|
||||
* | 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 "inspircd.h"
|
||||
#include "users.h"
|
||||
#include "channels.h"
|
||||
#include "modules.h"
|
||||
|
||||
/* $ModDesc: Removes flood limits from users upon opering up. */
|
||||
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);
|
||||
}
|
||||
|
||||
void OnPostOper(User* user, const std::string &opertype)
|
||||
{
|
||||
if(!IS_LOCAL(user))
|
||||
return;
|
||||
|
||||
user->ExemptFromPenalty = true;
|
||||
user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick);
|
||||
}
|
||||
};
|
||||
|
||||
MODULE_INIT(ModuleOperFlood)
|
||||
}
|
||||
|
||||
Version GetVersion()
|
||||
{
|
||||
return Version(1,1,0,1,VF_VENDOR,API_VERSION);
|
||||
}
|
||||
|
||||
void OnPostOper(User* user, const std::string &opertype)
|
||||
{
|
||||
if(!IS_LOCAL(user))
|
||||
return;
|
||||
|
||||
user->ExemptFromPenalty = true;
|
||||
user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick);
|
||||
}
|
||||
};
|
||||
|
||||
MODULE_INIT(ModuleOperFlood)
|
||||
|
Loading…
x
Reference in New Issue
Block a user