From ac19a5c24bb11af3ef55292946ab25cc250aaeea Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 11 Apr 2013 15:35:39 -0500 Subject: [PATCH] Fix memoserv/rsend reply --- modules/commands/ms_rsend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);