diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-07 13:19:12 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-07 13:19:12 +0000 |
commit | 32d5d6568057bf8a832e2c8566f3e4147544063b (patch) | |
tree | 30b074e51a8b4ca4b4274c3e95373d3cdaccb893 /src/map/map.c | |
parent | fda081264f919912287ce1b0cd2ef4c008912d25 (diff) | |
download | hercules-32d5d6568057bf8a832e2c8566f3e4147544063b.tar.gz hercules-32d5d6568057bf8a832e2c8566f3e4147544063b.tar.bz2 hercules-32d5d6568057bf8a832e2c8566f3e4147544063b.tar.xz hercules-32d5d6568057bf8a832e2c8566f3e4147544063b.zip |
- Removed char_nick2id from char-sql server as it's no longer needed.
- Fixed quitting the map server not properly saving the storage before deleting it.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7030 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/map/map.c b/src/map/map.c index 3833acb34..a26430776 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1662,9 +1662,6 @@ int map_quit(struct map_session_data *sd) { npc_script_event(sd, NPCE_LOGOUT); if (sd->pd) unit_free(&sd->pd->bl); unit_free(&sd->bl); - pc_clean_skilltree(sd); - if(sd->pet.intimate > 0) - intif_save_petdata(sd->status.account_id,&sd->pet); chrif_save(sd,1); } else { //Try to free some data, without saving anything (this could be invoked on map server change. [Skotlex] if (sd->bl.prev != NULL) |