diff options
| author | 2008-01-17 13:07:49 +0000 | |
|---|---|---|
| committer | 2008-01-17 13:07:49 +0000 | |
| commit | 94afde43b086f092bf8128d76d418cb63840e8eb (patch) | |
| tree | 770c8b46167a86769625b6a22494e266321c18da /src/modules/m_lockserv.cpp | |
| parent | Start converting WriteOpers calls into snomask 'O' -- generic oper notices. (diff) | |
| download | inspircd++-94afde43b086f092bf8128d76d418cb63840e8eb.tar.gz inspircd++-94afde43b086f092bf8128d76d418cb63840e8eb.tar.bz2 inspircd++-94afde43b086f092bf8128d76d418cb63840e8eb.zip | |
Remove InspIRCd::WriteOpers in favour of snomask O
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8728 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_lockserv.cpp')
| -rw-r--r-- | src/modules/m_lockserv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_lockserv.cpp b/src/modules/m_lockserv.cpp index d9cd3c67c..80b90f129 100644 --- a/src/modules/m_lockserv.cpp +++ b/src/modules/m_lockserv.cpp @@ -38,7 +38,7 @@ public: { locked = true; user->WriteServ("988 %s %s :Closed for new connections", user->nick, user->server); - ServerInstance->WriteOpers("*** Oper %s used LOCKSERV to temporarily close for new connections", user->nick); + ServerInstance->SNO->WriteToSnoMask('O', "Oper %s used LOCKSERV to temporarily close for new connections", user->nick); /* Dont send to the network */ return CMD_LOCALONLY; } @@ -61,7 +61,7 @@ public: { locked = false; user->WriteServ("989 %s %s :Open for new connections", user->nick, user->server); - ServerInstance->WriteOpers("*** Oper %s used UNLOCKSERV to allow for new connections", user->nick); + ServerInstance->SNO->WriteToSnoMask('O', "Oper %s used UNLOCKSERV to allow for new connections", user->nick); /* Dont send to the network */ return CMD_LOCALONLY; } |
