- Fixed a pair of missing initializers in the clif storage functions.
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7113 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
0b727de008
commit
02a4f5d5ae
@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
|
|||||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||||
|
|
||||||
2006/06/12
|
2006/06/12
|
||||||
|
* Fixed a pair of missing initializers in the clif storage functions.
|
||||||
|
[Skotlex]
|
||||||
* @heal no longer displays a healing animation. Fixes the client believing
|
* @heal no longer displays a healing animation. Fixes the client believing
|
||||||
you couldn't be healed more than 32K. [Skotlex]
|
you couldn't be healed more than 32K. [Skotlex]
|
||||||
* Now you can use any skills (except encore/dancing ones) while under
|
* Now you can use any skills (except encore/dancing ones) while under
|
||||||
|
@ -2258,7 +2258,7 @@ void clif_storagelist(struct map_session_data *sd,struct storage *stor)
|
|||||||
WFIFOHEAD(fd,MAX_STORAGE * s + 4);
|
WFIFOHEAD(fd,MAX_STORAGE * s + 4);
|
||||||
buf = WFIFOP(fd,0);
|
buf = WFIFOP(fd,0);
|
||||||
|
|
||||||
for(i=0,n=0;i<MAX_STORAGE;i++){
|
for(i=0,n=0,ne=0;i<MAX_STORAGE;i++){
|
||||||
if(stor->storage_[i].nameid<=0)
|
if(stor->storage_[i].nameid<=0)
|
||||||
continue;
|
continue;
|
||||||
id = itemdb_search(stor->storage_[i].nameid);
|
id = itemdb_search(stor->storage_[i].nameid);
|
||||||
@ -2308,7 +2308,7 @@ void clif_guildstoragelist(struct map_session_data *sd,struct guild_storage *sto
|
|||||||
WFIFOHEAD(fd,MAX_GUILD_STORAGE * s + 4);
|
WFIFOHEAD(fd,MAX_GUILD_STORAGE * s + 4);
|
||||||
buf = WFIFOP(fd,0);
|
buf = WFIFOP(fd,0);
|
||||||
|
|
||||||
for(i=0,n=0;i<MAX_GUILD_STORAGE;i++){
|
for(i=0,n=0,ne=0;i<MAX_GUILD_STORAGE;i++){
|
||||||
if(stor->storage_[i].nameid<=0)
|
if(stor->storage_[i].nameid<=0)
|
||||||
continue;
|
continue;
|
||||||
id = itemdb_search(stor->storage_[i].nameid);
|
id = itemdb_search(stor->storage_[i].nameid);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user