diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-01-31 20:40:16 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-01-31 20:40:16 +0000 |
commit | dc667b65a4138be2e3923c99fcbfd1bbd409fa39 (patch) | |
tree | b45fbf28d955c732da1ae31a19b3e441d30e3f23 /src/map/pc.c | |
parent | 7d014932d263c908529db8ad3d7b48a7ea01d0ec (diff) | |
download | hercules-dc667b65a4138be2e3923c99fcbfd1bbd409fa39.tar.gz hercules-dc667b65a4138be2e3923c99fcbfd1bbd409fa39.tar.bz2 hercules-dc667b65a4138be2e3923c99fcbfd1bbd409fa39.tar.xz hercules-dc667b65a4138be2e3923c99fcbfd1bbd409fa39.zip |
* Inventory and Cart item arrays are no longer getting compacted on each log-in/teleport/warp.
- This also resolves yet another issue caused by r14685 (bugreport:2604).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14691 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 56 |
1 files changed, 19 insertions, 37 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index e13e25ad2..8cf591f1b 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7308,55 +7308,38 @@ int pc_unequipitem(struct map_session_data *sd,int n,int flag) *------------------------------------------*/ int pc_checkitem(struct map_session_data *sd) { - int i,j,k,id,calc_flag = 0; + int i,id,calc_flag = 0; struct item_data *it=NULL; nullpo_ret(sd); if( sd->vender_id ) //Avoid reorganizing items when we are vending, as that leads to exploits (pointed out by End of Exam) return 0; - - for( i = j = 0; i < MAX_INVENTORY; i++ ) - { - if( (id = sd->status.inventory[i].nameid) == 0 ) - continue; - if( battle_config.item_check && !itemdb_available(id) ) - { - ShowWarning("illegal item id %d in %d[%s] inventory.\n",id,sd->bl.id,sd->status.name); - pc_delitem(sd,i,sd->status.inventory[i].amount,3,0); - continue; - } - if( i > j ) + if( battle_config.item_check ) + {// check for invalid(ated) items + for( i = 0; i < MAX_INVENTORY; i++ ) { - memcpy(&sd->status.inventory[j], &sd->status.inventory[i], sizeof(struct item)); - sd->inventory_data[j] = sd->inventory_data[i]; - } - j++; - } - - if( j < MAX_INVENTORY ) - memset(&sd->status.inventory[j], 0, sizeof(struct item)*(MAX_INVENTORY-j)); - for( k = j ; k < MAX_INVENTORY; k++ ) - sd->inventory_data[k] = NULL; + id = sd->status.inventory[i].nameid; - for( i = j = 0; i < MAX_CART; i++ ) - { - if( (id=sd->status.cart[i].nameid) == 0 ) - continue; - if( battle_config.item_check && !itemdb_available(id) ){ - ShowWarning("illegal item id %d in %d[%s] cart.\n",id,sd->bl.id,sd->status.name); - pc_cart_delitem(sd,i,sd->status.cart[i].amount,1); - continue; + if( id && !itemdb_available(id) ) + { + ShowWarning("Removed invalid/disabled item id %d from inventory (amount=%d, char_id=%d).\n", id, sd->status.inventory[i].amount, sd->status.char_id); + pc_delitem(sd, i, sd->status.inventory[i].amount, 0, 0); + } } - if( i > j ) + + for( i = 0; i < MAX_CART; i++ ) { - memcpy(&sd->status.cart[j],&sd->status.cart[i],sizeof(struct item)); + id = sd->status.cart[i].nameid; + + if( id && !itemdb_available(id) ) + { + ShowWarning("Removed invalid/disabled item id %d from cart (amount=%d, char_id=%d).\n", id, sd->status.cart[i].amount, sd->status.char_id); + pc_cart_delitem(sd, i, sd->status.cart[i].amount, 0); + } } - j++; } - if( j < MAX_CART ) - memset(&sd->status.cart[j],0,sizeof(struct item)*(MAX_CART-j)); for( i = 0; i < MAX_INVENTORY; i++) { @@ -7389,7 +7372,6 @@ int pc_checkitem(struct map_session_data *sd) } } - pc_setequipindex(sd); if( calc_flag && sd->state.active ) { pc_checkallowskill(sd); |