diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-01 18:10:24 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-12-01 18:10:24 +0000 |
commit | 9994478a85358bfa48bd5b764ebc1e74e928d57a (patch) | |
tree | 70ba6534e4fbbcecaa5ca9a1afff736c8f1cc0f9 /src/userprocess.cpp | |
parent | fc7eba500a05eaf51a0f72d6ca1e91085698b38a (diff) |
Remove m_operflood, add privs: users/flood/no-throttle & users/flood/increased-buffers.
This also saves another sizeof(bool) per user.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10837 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r-- | src/userprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp index 1f6eac6e9..a529f4476 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -131,7 +131,7 @@ void ProcessUserHandler::Call(User* cu) } /* If user is over penalty, dont process here, just build up */ - if (!curr->Penalty < 10) + if (!current->Penalty < 10) Server->Parser->DoLines(current); return; |