diff options
Diffstat (limited to 'modules/memoserv/send.cpp')
-rw-r--r-- | modules/memoserv/send.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/memoserv/send.cpp b/modules/memoserv/send.cpp index f06e62bab..98567c3e2 100644 --- a/modules/memoserv/send.cpp +++ b/modules/memoserv/send.cpp @@ -58,7 +58,7 @@ class CommandMSSend : public Command else if (result == MemoServ::MemoServService::MEMO_INVALID_TARGET) source.Reply(_("\002{0}\002 is not a registered unforbidden nick or channel."), nick); else if (result == MemoServ::MemoServService::MEMO_TOO_FAST) - source.Reply(_("Please wait \002{0}\002 seconds before using the \002{1}\002 command again."), Config->GetModule("memoserv")->Get<time_t>("senddelay"), source.command); + source.Reply(_("Please wait \002{0}\002 seconds before using the \002{1}\002 command again."), Config->GetModule("memoserv/main")->Get<time_t>("senddelay"), source.command); else if (result == MemoServ::MemoServService::MEMO_TARGET_FULL) source.Reply(_("Sorry, \002{0}\002 currently has too many memos and cannot receive more."), nick); } |