- Modified the error on the char-sql server to set chars online when it receives a save packet from a character tagged as offline.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7561 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-07-07 14:02:13 +00:00
parent deba53730f
commit 544adf40b5
2 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,9 @@ 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. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/07/07 2006/07/07
* Modified the error on the char-sql server to set chars online when it
receives a save packet from a character tagged as offline (until it can be
figured out why this is happening) [Skotlex]
* Fixed signed/unsigned comparison issues in the char txt/sql server. * Fixed signed/unsigned comparison issues in the char txt/sql server.
[Skotlex] [Skotlex]
* Fixed the cooking success chances. Thanks to Ishizu Chan. [Skotlex] * Fixed the cooking success chances. Thanks to Ishizu Chan. [Skotlex]

View File

@ -2595,11 +2595,16 @@ int parse_frommap(int fd) {
if ( if (
(character = idb_get(online_char_db, aid)) != NULL && (character = idb_get(online_char_db, aid)) != NULL &&
character->char_id == cid) character->char_id == cid)
; //Temporary debug. Set chars online and save.
else {
ShowWarning("parse_from_map (save-char): Received data for non-existant/offline character (%d:%d). Setting char online.\n", aid, cid);
set_char_online(id, cid, aid);
}
{ {
memcpy(&char_dat, RFIFOP(fd,13), sizeof(struct mmo_charstatus)); memcpy(&char_dat, RFIFOP(fd,13), sizeof(struct mmo_charstatus));
mmo_char_tosql(cid, &char_dat); mmo_char_tosql(cid, &char_dat);
} else }
ShowError("parse_from_map (save-char): Received data for non-existant/offline character (%d:%d)!\n", aid, cid);
if (RFIFOB(fd,12)) //Flag? Set character offline after saving [Skotlex] if (RFIFOB(fd,12)) //Flag? Set character offline after saving [Skotlex]
set_char_offline(cid, aid); set_char_offline(cid, aid);