1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 11:06:38 +02:00

Fixed memos so identified users not on the nick's access list can send them

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2581 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2009-10-25 04:12:08 +00:00
parent a6c5207859
commit 5ab705b6fe
+1 -1
View File
@@ -211,7 +211,7 @@ void memo_send(User * u, const char *name, const char *text, int z)
if (z == 3)
syntax_error(s_MemoServ, u, "RSEND", MEMO_RSEND_SYNTAX);
} else if (!u->IsRecognized()) {
} else if (!nick_identified(u) && !u->IsRecognized()) {
if (z == 0 || z == 3)
notice_lang(s_MemoServ, u, NICK_IDENTIFY_REQUIRED, s_NickServ);