diff options
| author | 2009-07-26 11:26:34 +0000 | |
|---|---|---|
| committer | 2009-07-26 11:26:34 +0000 | |
| commit | 3111c6053e3e23a136e79eace79f530e368bdfd7 (patch) | |
| tree | 4a0b1854bd3063025368faede49f47950413f6c4 | |
| parent | Use correct behavior (as per C++) for 'delete NULL' on windows; found by Adam... (diff) | |
don't send out global snotices from every server on NICKUNLOCK, fixes bug #892 reported by Taros
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11444 e03df62e-2008-0410-955e-edbf42e46eb7
| -rw-r--r-- | src/modules/m_nicklock.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_nicklock.cpp b/src/modules/m_nicklock.cpp index b88d4d212..fe669fdcb 100644 --- a/src/modules/m_nicklock.cpp +++ b/src/modules/m_nicklock.cpp @@ -128,12 +128,11 @@ class CommandNickunlock : public Command } } - /* If we made it this far, the command is going out on the wire so send local snotice */ - ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used NICKUNLOCK on "+parameters[0]); - if (target) { target->Shrink("nick_locked"); + if (IS_LOCAL(target)) + ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used NICKUNLOCK on "+parameters[0]); if (IS_LOCAL(user)) user->WriteNumeric(945, "%s %s :Nickname now unlocked.",user->nick.c_str(),target->nick.c_str()); } |
