diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-13 11:21:33 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-13 11:21:33 +0000 |
commit | 19acefafcb2677030a84ed3e39383c0a25c2047b (patch) | |
tree | 784834075263847f932bbdb06c547af153f5e037 /src/map/chrif.c | |
parent | aa5eb06a2b9087d8765c4e42f3a748259b995315 (diff) | |
download | hercules-19acefafcb2677030a84ed3e39383c0a25c2047b.tar.gz hercules-19acefafcb2677030a84ed3e39383c0a25c2047b.tar.bz2 hercules-19acefafcb2677030a84ed3e39383c0a25c2047b.tar.xz hercules-19acefafcb2677030a84ed3e39383c0a25c2047b.zip |
storage code cleanup (no behavioral changes yet)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12948 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r-- | src/map/chrif.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index 87e174e49..57fef3863 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -484,9 +484,11 @@ int chrif_sendmapack(int fd) //If there are players online, send them to the char-server. [Skotlex] send_users_tochar(); - - //Re-save any storages that were modified in the disconnection time. [Skotlex] + + //Auth db reconnect handling auth_db->foreach(auth_db,chrif_reconnect); + + //Re-save any storages that were modified in the disconnection time. [Skotlex] do_reconnect_storage(); return 0; |