summaryrefslogtreecommitdiff
path: root/src/map/storage.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-01 17:03:58 -0300
committershennetsind <ind@henn.et>2013-07-01 17:03:58 -0300
commit8de3c1118a6a7a235cc7a3e77f24b0c4c5c397ae (patch)
tree19f4867edc832db018feb79f51f501b3cd970d9b /src/map/storage.h
parentc1401ff17207e9c2aac551066f0bd90928dd90bb (diff)
downloadhercules-8de3c1118a6a7a235cc7a3e77f24b0c4c5c397ae.tar.gz
hercules-8de3c1118a6a7a235cc7a3e77f24b0c4c5c397ae.tar.bz2
hercules-8de3c1118a6a7a235cc7a3e77f24b0c4c5c397ae.tar.xz
hercules-8de3c1118a6a7a235cc7a3e77f24b0c4c5c397ae.zip
Fixed Bug #7216
Special Thanks to Shikazu, wouldn't have been able to identify this issue without his help! http://hercules.ws/board/index.php?app=tracker&showissue=7216 Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/storage.h')
-rw-r--r--src/map/storage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/storage.h b/src/map/storage.h
index fc05ef06c..83243a622 100644
--- a/src/map/storage.h
+++ b/src/map/storage.h
@@ -26,7 +26,7 @@ struct storage_interface {
int (*gettocart) (struct map_session_data *sd,int index,int amount);
void (*close) (struct map_session_data *sd);
void (*pc_quit) (struct map_session_data *sd, int flag);
-} storage_s;
+};
struct storage_interface *storage;
struct guild_storage_interface {
@@ -46,7 +46,7 @@ struct guild_storage_interface {
int (*pc_quit) (struct map_session_data *sd,int flag);
int (*save) (int account_id, int guild_id, int flag);
int (*saved) (int guild_id); //Ack from char server that guild store was saved.
-} gstorage_s;
+};
struct guild_storage_interface *gstorage;