summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/char_sql/char.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 3e7ba8b78..c8cc9ef7c 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -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.
2008/04/14
+ * Fixed a bug in the disconnection part char-server (not sending you offline) [Toms]
* Changes to the configure script: [FlavioJS]
- added options --with-MYSQL_CFLAGS and --with-MYSQL_LIBS to allow manual setting of those variables
2008/04/13
diff --git a/src/char_sql/char.c b/src/char_sql/char.c
index 87f558066..f731166ae 100644
--- a/src/char_sql/char.c
+++ b/src/char_sql/char.c
@@ -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;