mirror of
https://github.com/anope/anope.git
synced 2026-06-29 19:16:38 +02:00
Always use display for memo source
This commit is contained in:
@@ -51,7 +51,7 @@ class CommandMSRSend : public Command
|
||||
source.Reply(ACCESS_DENIED);
|
||||
else
|
||||
{
|
||||
MemoServService::MemoResult result = memoserv->Send(source.GetNick(), nick, text);
|
||||
MemoServService::MemoResult result = memoserv->Send(source.GetAccount()->display, nick, text);
|
||||
if (result == MemoServService::MEMO_INVALID_TARGET)
|
||||
source.Reply(_("\002%s\002 is not a registered unforbidden nick or channel."), nick.c_str());
|
||||
else if (result == MemoServService::MEMO_TOO_FAST)
|
||||
|
||||
@@ -45,7 +45,7 @@ class CommandMSSend : public Command
|
||||
return;
|
||||
}
|
||||
|
||||
MemoServService::MemoResult result = memoserv->Send(source.GetNick(), nick, text);
|
||||
MemoServService::MemoResult result = memoserv->Send(source.GetAccount()->display, nick, text);
|
||||
if (result == MemoServService::MEMO_SUCCESS)
|
||||
{
|
||||
source.Reply(_("Memo sent to \002%s\002."), nick.c_str());
|
||||
|
||||
@@ -39,7 +39,7 @@ class CommandMSSendAll : public Command
|
||||
const NickCore *nc = it->second;
|
||||
|
||||
if (nc != source.nc)
|
||||
memoserv->Send(source.GetNick(), nc->display, text);
|
||||
memoserv->Send(source.GetAccount()->display, nc->display, text);
|
||||
}
|
||||
|
||||
source.Reply(_("A massmemo has been sent to all registered users."));
|
||||
|
||||
Reference in New Issue
Block a user