diff options
| author | 2008-12-07 20:02:50 +0000 | |
|---|---|---|
| committer | 2008-12-07 20:02:50 +0000 | |
| commit | a1871c6a998ed3c352f6169817f6dc7a90f7625f (patch) | |
| tree | 2e9d58cf184aa95f6902d655635043b1d5780392 | |
| parent | Gyr! (diff) | |
Fix glitch before release v1.2.0b4
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10864 e03df62e-2008-0410-955e-edbf42e46eb7
| -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 30260f23e..44ed3559b 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -107,7 +107,7 @@ void ProcessUserHandler::Call(User* cu) } /* If user is over penalty, dont process here, just build up */ - if (!current->Penalty < 10) + if (current->Penalty < 10) Server->Parser->DoLines(current); return; |
