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/common | |
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/common')
-rw-r--r-- | src/common/mmo.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 35af37d85..f497cfdc0 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -184,7 +184,6 @@ struct status_change_data { }; struct storage_data { - int account_id; // used by charserver int storage_amount; struct item items[MAX_STORAGE]; }; |