diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-15 21:25:52 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-15 21:25:52 +0000 |
commit | 6457ffcc63e196af5458298be8c02b8195835356 (patch) | |
tree | 4e2f5184af11dd8f34178db992e4256e01fd67cf /src/map/chrif.c | |
parent | 9a309db58c70c994d7f937a243b52fe27a6c1f1d (diff) | |
download | hercules-6457ffcc63e196af5458298be8c02b8195835356.tar.gz hercules-6457ffcc63e196af5458298be8c02b8195835356.tar.bz2 hercules-6457ffcc63e196af5458298be8c02b8195835356.tar.xz hercules-6457ffcc63e196af5458298be8c02b8195835356.zip |
- Updated vc-project files to compile with the new int_homun files.
- Hopefully fixed the crash when using charsave_method = 1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8302 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chrif.c')
-rw-r--r-- | src/map/chrif.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/map/chrif.c b/src/map/chrif.c index b8990f87e..f4def8091 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -215,10 +215,8 @@ int chrif_save(struct map_session_data *sd, int flag) charsave_savechar(sd->char_id, &sd->status);
if (flag) //Character final saved.
sd->state.finalsave = 1;
- if (flag == 1) {
+ if (flag == 1)
chrif_char_offline(sd); //Tell char server that character went offline.
- map_quit_ack(sd); //Remove from memory.
- }
return 0;
}
#endif
|