mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-11 19:49:02 -04:00
Fix incorrect classname in operinvex (not broken, just wrong code)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10959 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
653d62ddc0
commit
b1b62edd3c
@ -18,17 +18,17 @@
|
|||||||
|
|
||||||
/* $ModDesc: Implements extban/invex +I O: - opertype bans */
|
/* $ModDesc: Implements extban/invex +I O: - opertype bans */
|
||||||
|
|
||||||
class ModuleGecosBan : public Module
|
class ModuleOperInvex : public Module
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
public:
|
public:
|
||||||
ModuleGecosBan(InspIRCd* Me) : Module(Me)
|
ModuleOperInvex(InspIRCd* Me) : Module(Me)
|
||||||
{
|
{
|
||||||
Implementation eventlist[] = { I_OnUserPreJoin, I_On005Numeric };
|
Implementation eventlist[] = { I_OnUserPreJoin, I_On005Numeric };
|
||||||
ServerInstance->Modules->Attach(eventlist, this, 2);
|
ServerInstance->Modules->Attach(eventlist, this, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual ~ModuleGecosBan()
|
virtual ~ModuleOperInvex()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -79,5 +79,5 @@ class ModuleGecosBan : public Module
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
MODULE_INIT(ModuleGecosBan)
|
MODULE_INIT(ModuleOperInvex)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user