Skip to content

Commit

Permalink
Make m_operflood actually work, thanks to KrazyBox for this.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10070 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
rburchell committed Jul 24, 2008
1 parent c440833 commit 2bc769f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/modules/m_operflood.cpp
Expand Up @@ -20,7 +20,11 @@
class ModuleOperFlood : public Module
{
public:
ModuleOperFlood(InspIRCd * Me) : Module(Me) {}
ModuleOperFlood(InspIRCd * Me) : Module(Me)
{
Implementation eventlist[] = { I_OnPostOper };
ServerInstance->Modules->Attach(eventlist, this, 1);
}


Version GetVersion()
Expand Down

0 comments on commit 2bc769f

Please sign in to comment.