diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/char_sql/char.c | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index f4af775e2..2ecfbcae4 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2006/07/30
+ * Force all users offline in sql when char-server starts [Toms]
2006/07/29
* Removed ugly struct cast in login.c [Toms]
* New version of buildin_query_sql which accept more than one column and
diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 098736caf..1a0945695 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -1249,6 +1249,10 @@ int mmo_char_sql_init(void) { //it will dc all off players
//and send the loginserver the new state....
+ // Force all users offline in sql when starting char-server
+ // (useful when servers crashs and don't clean the database)
+ set_all_offline_sql();
+
ShowInfo("Finished initilizing.......\n");
return 0;
|