diff options
| author | 2009-10-21 23:45:32 +0000 | |
|---|---|---|
| committer | 2009-10-21 23:45:32 +0000 | |
| commit | ff3eef491aa9e107d09d9dd9560ef7715b37b3b3 (patch) | |
| tree | 76532ed5d9dd8ec0deb86793bc72d548e7a4c76a /src/commands/cmd_nick.cpp | |
| parent | Change module API to use LocalUser* where correct (diff) | |
| download | inspircd++-ff3eef491aa9e107d09d9dd9560ef7715b37b3b3.tar.gz inspircd++-ff3eef491aa9e107d09d9dd9560ef7715b37b3b3.tar.bz2 inspircd++-ff3eef491aa9e107d09d9dd9560ef7715b37b3b3.zip | |
Move all local-only fields to LocalUser
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11944 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_nick.cpp')
| -rw-r--r-- | src/commands/cmd_nick.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/cmd_nick.cpp b/src/commands/cmd_nick.cpp index ee8c4625c..489551dd1 100644 --- a/src/commands/cmd_nick.cpp +++ b/src/commands/cmd_nick.cpp @@ -202,7 +202,8 @@ CmdResult CommandNick::Handle (const std::vector<std::string>& parameters, User if (user->registered == REG_ALL) { - user->IncreasePenalty(10); + if (IS_LOCAL(user)) + IS_LOCAL(user)->Penalty += 10; FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(user, oldnick)); } |
