Fixed a bug in the disconnection part char-server (not sending you offline)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12590 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
toms
2008-04-14 13:48:25 +00:00
parent 807bba43d9
commit e61bf34e4f
2 changed files with 2 additions and 1 deletions

View File

@@ -297,7 +297,7 @@ void set_char_offline(int char_id, int account_id)
}
}
if (login_fd > 0 && !session[login_fd]->flag.eof && (character->fd != -1 && character->char_id != -1))
if (login_fd > 0 && !session[login_fd]->flag.eof && character->char_id != -1)
{
WFIFOHEAD(login_fd,6);
WFIFOW(login_fd,0) = 0x272c;