diff options
author | Adam <Adam@anope.org> | 2013-04-11 15:35:39 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-11 15:35:39 -0500 |
commit | ac19a5c24bb11af3ef55292946ab25cc250aaeea (patch) | |
tree | 8c9f12e051ce37df1ee9a2f4431db70c994f8986 /modules/commands/ms_rsend.cpp | |
parent | 6f9dd282d2cdf5dc86a6998d6160f13e23ea9f70 (diff) |
Fix memoserv/rsend reply
Diffstat (limited to 'modules/commands/ms_rsend.cpp')
-rw-r--r-- | modules/commands/ms_rsend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ms_rsend.cpp b/modules/commands/ms_rsend.cpp index 782871d84..bbfb50117 100644 --- a/modules/commands/ms_rsend.cpp +++ b/modules/commands/ms_rsend.cpp @@ -60,7 +60,7 @@ class CommandMSRSend : public Command source.Reply(_("Sorry, %s currently has too many memos and cannot receive more."), nick.c_str()); else { - source.Reply(_("Memo sent to \002%s\002."), name.c_str()); + source.Reply(_("Memo sent to \002%s\002."), nick.c_str()); bool ischan; MemoInfo *mi = MemoInfo::GetMemoInfo(nick, ischan); |