diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-02 19:55:02 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-02 19:55:02 +0000 |
commit | b0884a94ef85f28fa964adc1b4f0732f2986ca7a (patch) | |
tree | f322376dceee3af1f4d043b86808cbf90bf71987 /src/modules/m_nicklock.cpp | |
parent | 39d63cdd108d6a51ee8bbbc3e192d302be266ed8 (diff) |
Globally route "a" snotices for more modules. Patch from Milliways.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11352 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_nicklock.cpp')
-rw-r--r-- | src/modules/m_nicklock.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_nicklock.cpp b/src/modules/m_nicklock.cpp index fcb82275e..b4956c7e0 100644 --- a/src/modules/m_nicklock.cpp +++ b/src/modules/m_nicklock.cpp @@ -67,7 +67,7 @@ class CommandNicklock : public Command { // This has to be done *here*, because this metadata must be stored netwide. target->Extend("nick_locked", "ON"); - ServerInstance->SNO->WriteToSnoMask('a', user->nick+" used NICKLOCK to change and hold "+target->nick+" to "+parameters[1]); + ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used NICKLOCK to change and hold "+target->nick+" to "+parameters[1]); /* Only send out nick from local server */ if (IS_LOCAL(target)) @@ -129,7 +129,7 @@ class CommandNickunlock : public Command } /* If we made it this far, the command is going out on the wire so send local snotice */ - ServerInstance->SNO->WriteToSnoMask('a', std::string(user->nick)+" used NICKUNLOCK on "+parameters[0]); + ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used NICKUNLOCK on "+parameters[0]); if (target) { |