diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-19 16:00:30 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-19 16:00:30 +0000 |
commit | 83bbf93278328b5530ce7f0d6d5a5160148e3e1e (patch) | |
tree | 3989709252e556de2fda83d617d56d589d8f13b1 /src/char/int_storage.h | |
parent | 73c06082f78f6ba79e40bf66c531d5ff99082fee (diff) | |
download | hercules-83bbf93278328b5530ce7f0d6d5a5160148e3e1e.tar.gz hercules-83bbf93278328b5530ce7f0d6d5a5160148e3e1e.tar.bz2 hercules-83bbf93278328b5530ce7f0d6d5a5160148e3e1e.tar.xz hercules-83bbf93278328b5530ce7f0d6d5a5160148e3e1e.zip |
* Fixed a storage saving issue with txt charserver (bugreport:2084)
- caused by incorrect idb_ensure -> idb_get change (see r12950)
- removed redundant account_id variable from storage data
- cleaned up the very messy txt storage handling code
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13093 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/int_storage.h')
-rw-r--r-- | src/char/int_storage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/int_storage.h b/src/char/int_storage.h index 79e436093..fdd2a5f28 100644 --- a/src/char/int_storage.h +++ b/src/char/int_storage.h @@ -19,7 +19,7 @@ extern char storage_txt[1024]; extern char guild_storage_txt[1024]; //Exported for use in the TXT-SQL converter. -int storage_fromstr(char *str,struct storage_data *p); +bool storage_fromstr(char* str, int* account_id, struct storage_data* p); int guild_storage_fromstr(char *str,struct guild_storage *p); bool storage_load(int account_id, struct storage_data* storage); |