diff options
author | Adam <Adam@anope.org> | 2016-10-09 22:03:55 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-09 22:03:55 -0400 |
commit | cfbbcf32164c6011c80d2a3eed78f1db48c9903b (patch) | |
tree | 1104d09ee7530e61be3220b81bcd38a7d1585f74 /modules/memoserv/rsend.cpp | |
parent | ab2e1947123a261a8793d6190999efdce1144c9d (diff) |
Adjust reading memoserv core config opts
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 |