summaryrefslogtreecommitdiff
path: root/src/userprocess.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-01 18:10:22 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-01 18:10:22 +0000
commitfc7eba500a05eaf51a0f72d6ca1e91085698b38a (patch)
tree14a096eb36d69a18e33dfe5a0cb99e92a2729210 /src/userprocess.cpp
parentf58879f3591b2ee296561bd0879832ae45cec49d (diff)
Remove OverPenalty, saves sizeof(bool) per user.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10836 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r--src/userprocess.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp
index b179622aa..1f6eac6e9 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 (!current->OverPenalty)
+ if (!curr->Penalty < 10)
Server->Parser->DoLines(current);
return;
@@ -180,12 +180,6 @@ void InspIRCd::DoBackgroundUserStuff()
Parser->DoLines(curr, true);
}
- if (curr->OverPenalty)
- {
- if (curr->sendq.empty())
- curr->OverPenalty = false;
- }
-
switch (curr->registered)
{
case REG_ALL: