diff options
| author | 2008-06-06 16:13:17 +0000 | |
|---|---|---|
| committer | 2008-06-06 16:13:17 +0000 | |
| commit | fdaf67113a7d5b9cd5bbe9c8f729c3cc686486bf (patch) | |
| tree | f4d285f1cfb30c944f8512f5209d43243754aaa1 /src/modules | |
| parent | If we have > 10 matches to a command, abort and dont try and show the list. T... (diff) | |
| download | inspircd++-fdaf67113a7d5b9cd5bbe9c8f729c3cc686486bf.tar.gz inspircd++-fdaf67113a7d5b9cd5bbe9c8f729c3cc686486bf.tar.bz2 inspircd++-fdaf67113a7d5b9cd5bbe9c8f729c3cc686486bf.zip | |
Whoops eat command not allow it
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9849 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_abbreviation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_abbreviation.cpp b/src/modules/m_abbreviation.cpp index c80df1858..d3c423f53 100644 --- a/src/modules/m_abbreviation.cpp +++ b/src/modules/m_abbreviation.cpp @@ -57,7 +57,7 @@ class ModuleAbbreviation : public Module if (++matches > 10) { user->WriteNumeric(420, "%s :Ambiguous abbreviation and too many possible matches.", user->nick.c_str()); - return false; + return true; } if (!foundmatch) |
