1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 21:36:38 +02:00

Fixed some logic fail in User::IsRecognized

This commit is contained in:
Adam
2011-03-15 19:23:08 -04:00
parent ddfb16de1a
commit ee9636bba2
+1 -1
View File
@@ -455,7 +455,7 @@ bool User::IsRecognized(bool CheckSecure)
{
NickAlias *na = findnick(this->nick);
if (!na || !na->nc->HasFlag(NI_SECURE))
if (!na || na->nc->HasFlag(NI_SECURE))
return false;
}