From f68bd7c915dc631d452b6ea2ac21cdf75bc26fe4 Mon Sep 17 00:00:00 2001 From: ultramage Date: Wed, 3 Jan 2007 03:05:43 +0000 Subject: - Fixed pc_calc_skilltree ignoring prerequisites / joblvl requirements. - Re-applied change r9593 that got accidentally reverted by r9595. - Added the official behavior of monsters regaining full hp when they morph. - Added support for text/comments at the end of monster spawn lines ( required) - Silenced the debug message in socket.c that's been freaking people out. - Modified the useless error message in atcommand_effect. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9608 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/socket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common') diff --git a/src/common/socket.c b/src/common/socket.c index 4e25abbb1..ca532f185 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -183,7 +183,7 @@ static int recv_to_fifo(int fd) FD_CLR(fd, &readfds); //Remove the socket so the select() won't hang on it. } if (s_errno != S_EWOULDBLOCK) { - ShowDebug("recv_to_fifo: error %d, ending connection #%d\n", s_errno, fd); + //ShowDebug("recv_to_fifo: error %d, ending connection #%d\n", s_errno, fd); set_eof(fd); } return 0; @@ -219,7 +219,7 @@ static int send_from_fifo(int fd) FD_CLR(fd, &readfds); //Remove the socket so the select() won't hang on it. } if (s_errno != S_EWOULDBLOCK) { - ShowDebug("send_from_fifo: error %d, ending connection #%d\n", s_errno, fd); + //ShowDebug("send_from_fifo: error %d, ending connection #%d\n", s_errno, fd); session[fd]->wdata_size = 0; //Clear the send queue as we can't send anymore. [Skotlex] set_eof(fd); } -- cgit v1.2.3-60-g2f50