diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-07 22:49:17 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-07 22:49:17 +0000 |
commit | 3481bf3610060cd0e639db32be5fea03e8f18dcc (patch) | |
tree | d0a70311186f5a12acb32ccfc26b1ebcac4ce0f5 /src | |
parent | 43ba6d2a5256e7b74b9c96df9d603957e624c710 (diff) |
SHUN works (locally at least)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9412 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_shun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp index db800527d..fe8da9280 100644 --- a/src/modules/m_shun.cpp +++ b/src/modules/m_shun.cpp @@ -193,7 +193,7 @@ class ModuleShun : public Module if((command != "PONG") && (command != "PING")) { // Don't let them issue cmd if they are shunned.. - XLine *rl = ServerInstance->XLines->MatchesLine("S", user); + XLine *rl = ServerInstance->XLines->MatchesLine("SHUN", user); if (rl) { |