diff options
Diffstat (limited to 'modules/memoserv/rsend.cpp')
-rw-r--r-- | modules/memoserv/rsend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/memoserv/rsend.cpp b/modules/memoserv/rsend.cpp index 2656ffd3a..1c8cbea55 100644 --- a/modules/memoserv/rsend.cpp +++ b/modules/memoserv/rsend.cpp @@ -61,7 +61,7 @@ class CommandMSRSend : public Command if (result == MemoServ::MemoServService::MEMO_INVALID_TARGET) source.Reply(_("\002{0}\002 isn't registered."), 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); else |