From: w00t Date: Sun, 21 Oct 2007 18:01:24 +0000 (+0000) Subject: Add User::IncreasePenalty() and User::DecreasePenalty() X-Git-Tag: v2.0.23~4415 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=cef3b99425b0b0f0a4fb05bb0d01156727dfa87f;p=user%2Fhenk%2Fcode%2Finspircd.git Add User::IncreasePenalty() and User::DecreasePenalty() git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8264 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/include/users.h b/include/users.h index d927890f0..42dccfeb6 100644 --- a/include/users.h +++ b/include/users.h @@ -1140,6 +1140,14 @@ class CoreExport User : public connection */ const char* GetOperQuit(); + /** Increases a user's command penalty by a set amount. + */ + void IncreasePenalty(int increase); + + /** Decreases a user's command penalty by a set amount. + */ + void DecreasePenalty(int decrease); + /** Handle socket event. * From EventHandler class. * @param et Event type diff --git a/src/users.cpp b/src/users.cpp index 7dd2a71ec..c6c8126ee 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1846,6 +1846,16 @@ const char* User::GetOperQuit() return operquit ? operquit : ""; } +void User::IncreasePenalty(int increase) +{ + this->Penalty += increase; +} + +void User::DecreasePenalty(int decrease) +{ + this->Penalty -= decrease; +} + VisData::VisData() { }