diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-12-22 23:59:06 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-12-22 23:59:06 +0000 |
commit | f82640af7cc534f284914e12233098c4882a484d (patch) | |
tree | 796932a6286791229a93829879554c386370e38f /src/modules/cs_appendtopic.c | |
parent | 77f0cd0c46fd318acfbb281407c06f0af755702a (diff) |
Fixed bug #1119 - Fixed a few help replies to respect the nickserv msg option when sending blank lines
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2714 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_appendtopic.c')
-rw-r--r-- | src/modules/cs_appendtopic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/cs_appendtopic.c b/src/modules/cs_appendtopic.c index 324a660ae..5a0194a42 100644 --- a/src/modules/cs_appendtopic.c +++ b/src/modules/cs_appendtopic.c @@ -118,7 +118,7 @@ class CommandCSAppendTopic : public Command bool OnHelp(User *u, const ci::string &subcommand) { me->NoticeLang(Config.s_ChanServ, u, LNG_APPENDTOPIC_SYNTAX); - ircdproto->SendMessage(findbot(Config.s_ChanServ), u->nick, " "); + u->SendMessage(Config.s_ChanServ, " "); me->NoticeLang(Config.s_ChanServ, u, LNG_CHAN_HELP_APPENDTOPIC); return true; |