diff options
| author | 2009-11-11 19:52:03 +0000 | |
|---|---|---|
| committer | 2009-11-11 19:52:03 +0000 | |
| commit | 0f87ad0d4b97874823c94a5168a06dcd444ad559 (patch) | |
| tree | 81b0aba7a008a140bf326608e6b6670b31b5c958 /src/modules/m_testnet.cpp | |
| parent | Fix compilation due to dirent header (diff) | |
| download | inspircd++-0f87ad0d4b97874823c94a5168a06dcd444ad559.tar.gz inspircd++-0f87ad0d4b97874823c94a5168a06dcd444ad559.tar.bz2 inspircd++-0f87ad0d4b97874823c94a5168a06dcd444ad559.zip | |
Add fine-grained command flood controls
This reintrouces "Excess Flood" quits for those that prefer it to fakelag,
and allows the maximum command rate to be set in the connect block.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12093 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_testnet.cpp')
| -rw-r--r-- | src/modules/m_testnet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_testnet.cpp b/src/modules/m_testnet.cpp index ff37adf3c..0bc33f002 100644 --- a/src/modules/m_testnet.cpp +++ b/src/modules/m_testnet.cpp @@ -190,9 +190,9 @@ class CommandTest : public Command for(unsigned int i=0; i < count; i++) user->Write(line); } - else if (parameters[0] == "freeze" && IS_LOCAL(user)) + else if (parameters[0] == "freeze" && IS_LOCAL(user) && parameters.size() > 1) { - IS_LOCAL(user)->Penalty += 100; + IS_LOCAL(user)->CommandFloodPenalty += atoi(parameters[1].c_str()); } else if (parameters[0] == "shutdown" && IS_LOCAL(user)) { |
