summaryrefslogtreecommitdiff
path: root/src/modules/m_satopic.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-08-05 23:11:45 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-08-05 23:11:45 +0000
commit61d3a678caa80cba61087ffc9c6fb79a906f2624 (patch)
tree9ca4bb8994f0b244c5f0992311e2b3c0ad7a59e3 /src/modules/m_satopic.cpp
parent8e0c895fb7cd2921e60eaeb4ca13cca5878499cf (diff)
Fix bug #584 (not with the provided patch) and stuff nobody really cares about
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10106 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_satopic.cpp')
-rw-r--r--src/modules/m_satopic.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_satopic.cpp b/src/modules/m_satopic.cpp
index fea5cd018..4394cb799 100644
--- a/src/modules/m_satopic.cpp
+++ b/src/modules/m_satopic.cpp
@@ -41,6 +41,7 @@ class CommandSATopic : public Command
// 3rd parameter overrides access checks
target->SetTopic(user, newTopic, true);
ServerInstance->SNO->WriteToSnoMask('A', user->nick + " used SATOPIC on " + target->name + ", new topic: " + newTopic);
+ ServerInstance->PI->SendSNONotice("A", user->nick + " used SATOPIC on " + target->name + ", new topic: " + newTopic);
/* I think this is right, the TOPIC message generated should be
* propogated without the SATOPIC command itself having to be.