diff options
author | Adam <Adam@anope.org> | 2011-03-30 23:59:57 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-30 23:59:57 -0400 |
commit | 8dec0c1f1798845a47914570869ed94ce44ce58d (patch) | |
tree | c2e016c51195c702f6fd08db91c45673dff3e3da /modules/core/ns_recover.cpp | |
parent | 8098ed899a3648897c0de925c974e21883a76b8d (diff) |
Fixed bug #1258, more Windows stuff, and more language strings
Diffstat (limited to 'modules/core/ns_recover.cpp')
-rw-r--r-- | modules/core/ns_recover.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/core/ns_recover.cpp b/modules/core/ns_recover.cpp index 936e2b51a..416b0e184 100644 --- a/modules/core/ns_recover.cpp +++ b/modules/core/ns_recover.cpp @@ -53,7 +53,7 @@ class CommandNSRecover : public Command /* Convert Config->NSReleaseTimeout seconds to string format */ Anope::string relstr = duration(Config->NSReleaseTimeout); - source.Reply(_(NICK_RECOVERED), Config->s_NickServ.c_str(), nick.c_str(), relstr.c_str()); + source.Reply(_(NICK_RECOVERED), Config->UseStrictPrivMsgString.c_str(), Config->s_NickServ.c_str(), nick.c_str(), relstr.c_str()); } else { @@ -77,7 +77,7 @@ class CommandNSRecover : public Command /* Convert Config->NSReleaseTimeout seconds to string format */ Anope::string relstr = duration(Config->NSReleaseTimeout); - source.Reply(_(NICK_RECOVERED), Config->s_NickServ.c_str(), nick.c_str(), relstr.c_str()); + source.Reply(_(NICK_RECOVERED), Config->UseStrictPrivMsgString.c_str(), Config->s_NickServ.c_str(), nick.c_str(), relstr.c_str()); } else source.Reply(_(ACCESS_DENIED)); |