summaryrefslogtreecommitdiff
path: root/src/modules/m_samode.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-11-12 15:59:25 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-11-12 15:59:25 +0000
commitb0316eb0472aff155feda1b3c9d0c59d44e3dc3e (patch)
tree3e3c65c1ee32bf6189d62e379779686268e64bc6 /src/modules/m_samode.cpp
parent0bcea9f631a18007ec4421575c5a8c5c0c87fbe3 (diff)
Add send_opers event and OPERNOTICE command to send remote server NOTICE
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5708 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_samode.cpp')
-rw-r--r--src/modules/m_samode.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_samode.cpp b/src/modules/m_samode.cpp
index 1f68e48bf..6e776e7c0 100644
--- a/src/modules/m_samode.cpp
+++ b/src/modules/m_samode.cpp
@@ -72,6 +72,11 @@ class cmd_samode : public command_t
Event rmode((char *)&n, NULL, "send_mode_explicit");
rmode.Send(ServerInstance);
+ n.clear();
+ n.push_back(std::string(user->nick) + " used SAMODE: " + ServerInstance->Modes->GetLastParse());
+ Event rmode2((char *)&n, NULL, "send_opers");
+ rmode.Send(ServerInstance);
+
/* XXX: Yes, this is right. We dont want to propogate the
* actual SAMODE command, just the MODE command generated
* by the send_mode_explicit