diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-29 15:53:30 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-29 15:53:30 +0000 |
commit | adf2854618745572b076a2b4a6343e63374c1182 (patch) | |
tree | d9205c4b2153667b9575b7a5d9d5e98b9ecef861 /src/map/storage.h | |
parent | b7158940b46b4a7cc3ad795eb90a0d896936a644 (diff) | |
download | hercules-adf2854618745572b076a2b4a6343e63374c1182.tar.gz hercules-adf2854618745572b076a2b4a6343e63374c1182.tar.bz2 hercules-adf2854618745572b076a2b4a6343e63374c1182.tar.xz hercules-adf2854618745572b076a2b4a6343e63374c1182.zip |
- Fixed guild storage being "eternally in use" if you quit/logout before closing it.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7395 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/storage.h')
-rw-r--r-- | src/map/storage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/storage.h b/src/map/storage.h index e33505062..b62ddb47a 100644 --- a/src/map/storage.h +++ b/src/map/storage.h @@ -34,7 +34,7 @@ int storage_guild_storageaddfromcart(struct map_session_data *sd,int index,int a int storage_guild_storagegettocart(struct map_session_data *sd,int index,int amount);
int storage_guild_storageclose(struct map_session_data *sd);
int storage_guild_storage_quit(struct map_session_data *sd,int flag);
-int storage_guild_storagesave(int account_id, int guild_id);
+int storage_guild_storagesave(int account_id, int guild_id, int flag);
int storage_guild_storagesaved(int guild_id); //Ack from char server that guild store was saved.
int storage_comp_item(const void *_i1, const void *_i2);
|