summaryrefslogtreecommitdiff
path: root/src/map/storage.c
diff options
context:
space:
mode:
authorSusu <bruant.bastien@gmail.com>2013-07-29 15:49:14 +0200
committerSusu <bruant.bastien@gmail.com>2013-07-29 15:49:14 +0200
commit853489bcb5f2acfce14731b117ddc2b246042883 (patch)
treea1418ef7a65a26af3693edd0576abdbf83ce24f7 /src/map/storage.c
parent9d5309327da9543f86385549001df7e9a7c98833 (diff)
downloadhercules-853489bcb5f2acfce14731b117ddc2b246042883.tar.gz
hercules-853489bcb5f2acfce14731b117ddc2b246042883.tar.bz2
hercules-853489bcb5f2acfce14731b117ddc2b246042883.tar.xz
hercules-853489bcb5f2acfce14731b117ddc2b246042883.zip
Added intif interface
Diffstat (limited to 'src/map/storage.c')
-rw-r--r--src/map/storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/storage.c b/src/map/storage.c
index 5ebbb0dde..81d746cc8 100644
--- a/src/map/storage.c
+++ b/src/map/storage.c
@@ -400,7 +400,7 @@ int storage_guild_storageopen(struct map_session_data* sd)
}
if((gstor = gstorage->id2storage2(sd->status.guild_id)) == NULL) {
- intif_request_guild_storage(sd->status.account_id,sd->status.guild_id);
+ intif->request_guild_storage(sd->status.account_id,sd->status.guild_id);
return 0;
}
if(gstor->storage_status)
@@ -657,7 +657,7 @@ int storage_guild_storagesave(int account_id, int guild_id, int flag)
if (flag) //Char quitting, close it.
stor->storage_status = 0;
if (stor->dirty)
- intif_send_guild_storage(account_id,stor);
+ intif->send_guild_storage(account_id,stor);
return 1;
}
return 0;