diff options
author | Haru <haru@dotalux.com> | 2018-09-23 15:55:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 15:55:01 +0200 |
commit | 211df88ef832810792da9e76e9beb3bb6fe45103 (patch) | |
tree | 732db250b0b6858f6cc60b671318bd3c66ae1e25 /src/map/storage.c | |
parent | f14bb88b2c0d95fd7c1b69db9d367b8a74cfb285 (diff) | |
parent | bb5897b1d3323e8e9d2fd0fd45e2dd41679e9d30 (diff) | |
download | hercules-211df88ef832810792da9e76e9beb3bb6fe45103.tar.gz hercules-211df88ef832810792da9e76e9beb3bb6fe45103.tar.bz2 hercules-211df88ef832810792da9e76e9beb3bb6fe45103.tar.xz hercules-211df88ef832810792da9e76e9beb3bb6fe45103.zip |
Merge pull request #2199 from 4144/updatepackets
Update packets up to 2018-09-19
Diffstat (limited to 'src/map/storage.c')
-rw-r--r-- | src/map/storage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/storage.c b/src/map/storage.c index ba8dcee3a..a6f0715e7 100644 --- a/src/map/storage.c +++ b/src/map/storage.c @@ -122,8 +122,8 @@ static int storage_storageopen(struct map_session_data *sd) if (sd->storage.aggregate > 0) { storage->sortitem(VECTOR_DATA(sd->storage.item), VECTOR_LENGTH(sd->storage.item)); - clif->storagelist(sd, VECTOR_DATA(sd->storage.item), VECTOR_LENGTH(sd->storage.item)); } + clif->storageList(sd, VECTOR_DATA(sd->storage.item), VECTOR_LENGTH(sd->storage.item)); clif->updatestorageamount(sd, sd->storage.aggregate, MAX_STORAGE); return 0; @@ -512,7 +512,7 @@ static int storage_guild_storageopen(struct map_session_data *sd) gstor->storage_status = 1; sd->state.storage_flag = STORAGE_FLAG_GUILD; storage->sortitem(gstor->items, ARRAYLENGTH(gstor->items)); - clif->storagelist(sd, gstor->items, ARRAYLENGTH(gstor->items)); + clif->guildStorageList(sd, gstor->items, ARRAYLENGTH(gstor->items)); clif->updatestorageamount(sd, gstor->storage_amount, MAX_GUILD_STORAGE); return 0; } |