1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 21:33:14 +02:00

Fixed bug #1258, more Windows stuff, and more language strings

This commit is contained in:
Adam
2011-03-30 23:59:57 -04:00
parent 8098ed899a
commit 8dec0c1f17
24 changed files with 44 additions and 47 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ void mod_run_cmd(BotInfo *bi, User *u, ChannelInfo *ci, Command *c, const Anope:
// Command requires registered users only
if (!c->HasFlag(CFLAG_ALLOW_UNREGISTERED) && !u->IsIdentified())
{
u->SendMessage(bi, _(NICK_IDENTIFY_REQUIRED), Config->s_NickServ.c_str());
u->SendMessage(bi, _(NICK_IDENTIFY_REQUIRED), Config->UseStrictPrivMsgString.c_str(), Config->s_NickServ.c_str());
Log(LOG_COMMAND, "denied", bi) << "Access denied for unregistered user " << u->GetMask() << " with command " << command;
PopLanguage();
return;