git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6171 54d463be-8e91-2dee-dedb-b68131a5f0ec

This commit is contained in:
Zido 2006-04-18 22:03:40 +00:00
parent bc11c8b54f
commit 411991788d
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/04/18
* A tiny fix to @kami [Zido]
* The IRC Bot can now autojoin when kicked, set in irc_athena. [Zido]
* Added @who to the IRC Bot, outputs all online characters. [Zido]
* Changed the memory manager fatal errors when allocating memory to print

View File

@ -279,6 +279,7 @@ void irc_parse_sub(int fd, char *incoming_string)
if(get_access(source_nick)<ACCESS_OP)
sprintf(send_string,"NOTICE %s :Access Denied",source_nick);
else {
sprintf(send_string,"%s: %s",source_nick,cmdargs);
intif_GMmessage(send_string,strlen(send_string)+1,0);
sprintf(send_string,"NOTICE %s :Message Sent",source_nick);
}