summaryrefslogtreecommitdiff
path: root/src/map/storage.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-29 12:40:46 -0300
committershennetsind <ind@henn.et>2013-07-29 12:40:46 -0300
commitd59067bda89125ee68b7aa453d715f44ce853ec4 (patch)
tree3b36fab0528ee0335513ae21a0ce376c226d41d1 /src/map/storage.c
parentbdd6fbe74a64373442fc2c2d4c789b9eb8509f23 (diff)
parent309ffb2a4990596e86ff16fccd38fe80972ce49d (diff)
downloadhercules-d59067bda89125ee68b7aa453d715f44ce853ec4.tar.gz
hercules-d59067bda89125ee68b7aa453d715f44ce853ec4.tar.bz2
hercules-d59067bda89125ee68b7aa453d715f44ce853ec4.tar.xz
hercules-d59067bda89125ee68b7aa453d715f44ce853ec4.zip
Merge branch 'master' of https://github.com/HerculesWS/Hercules
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;