aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_banexception.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-07-09 17:36:30 +0000
committerGravatar brain2006-07-09 17:36:30 +0000
commitf16ef27e0e5df0249ecb38f7adf76735a550ad0a (patch)
tree0670687af7656d28480e8e9741e5cc4aefd861dc /src/modules/m_banexception.cpp
parentAnd we're all done!!! (well, it compiles, anyway) (diff)
downloadinspircd++-f16ef27e0e5df0249ecb38f7adf76735a550ad0a.tar.gz
inspircd++-f16ef27e0e5df0249ecb38f7adf76735a550ad0a.tar.bz2
inspircd++-f16ef27e0e5df0249ecb38f7adf76735a550ad0a.zip
Altered u_listmode to have a constructor arg 'autotidy' which if set to true runs input through ModeParser::CleanMask() otherwise leaves it alone
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4236 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_banexception.cpp')
-rw-r--r--src/modules/m_banexception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp
index 862a6e21c..062194d76 100644
--- a/src/modules/m_banexception.cpp
+++ b/src/modules/m_banexception.cpp
@@ -20,7 +20,7 @@
class BanException : public ListModeBase
{
public:
- BanException(Server* serv) : ListModeBase(serv, 'e', "End of Channel Exception List", "348", "349") { }
+ BanException(Server* serv) : ListModeBase(serv, 'e', "End of Channel Exception List", "348", "349", true) { }
};