summaryrefslogtreecommitdiff
path: root/modules/memoserv/send.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-10-09 22:03:55 -0400
committerAdam <Adam@anope.org>2016-10-09 22:03:55 -0400
commitcfbbcf32164c6011c80d2a3eed78f1db48c9903b (patch)
tree1104d09ee7530e61be3220b81bcd38a7d1585f74 /modules/memoserv/send.cpp
parentab2e1947123a261a8793d6190999efdce1144c9d (diff)
Adjust reading memoserv core config opts
Diffstat (limited to 'modules/memoserv/send.cpp')
-rw-r--r--modules/memoserv/send.cpp2
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);
}