Skip to content

Commit

Permalink
Merge pull request #561 from Xe/master
Browse files Browse the repository at this point in the history
modules/autoreply: Prefer NOTICE over PRIVMSG
  • Loading branch information
DarthGandalf committed Jun 1, 2014
2 parents 66fecf8 + 9246dc3 commit 4c7a41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/autoreply.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class CAutoReplyMod : public CModule {
return;

m_Messaged.AddItem(sNick);
PutIRC("PRIVMSG " + sNick + " :" + GetReply());
PutIRC("NOTICE " + sNick + " :" + GetReply());
}

virtual EModRet OnPrivMsg(CNick& Nick, CString& sMessage) {
Expand Down

0 comments on commit 4c7a41e

Please sign in to comment.