diff options
author | shennetsind <ind@henn.et> | 2013-07-26 09:59:30 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-07-26 09:59:30 -0300 |
commit | b23563de5f9abde73600f84aff1d24d9f3b53bc5 (patch) | |
tree | 21ed35a07c74c224957b888b12e387cdd3751561 /src/map/status.c | |
parent | 583272234fc96da7911029cd3cad13a7fb386e9e (diff) | |
parent | e9e8914ebfa70c1c212d0a7d7173b6da9e0e5b60 (diff) | |
download | hercules-b23563de5f9abde73600f84aff1d24d9f3b53bc5.tar.gz hercules-b23563de5f9abde73600f84aff1d24d9f3b53bc5.tar.bz2 hercules-b23563de5f9abde73600f84aff1d24d9f3b53bc5.tar.xz hercules-b23563de5f9abde73600f84aff1d24d9f3b53bc5.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 7d5676b98..2f1950c47 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -6865,11 +6865,11 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val case SC__STRIPACCESSARY: if( sd ) { int i = -1; - if( !(sd->bonus.unstripable_equip&EQI_ACC_L) ) { + if( !(sd->bonus.unstripable_equip&EQP_ACC_L) ) { i = sd->equip_index[EQI_ACC_L]; if( i >= 0 && sd->inventory_data[i] && sd->inventory_data[i]->type == IT_ARMOR ) pc->unequipitem(sd,i,3); //L-Accessory - } if( !(sd->bonus.unstripable_equip&EQI_ACC_R) ) { + } if( !(sd->bonus.unstripable_equip&EQP_ACC_R) ) { i = sd->equip_index[EQI_ACC_R]; if( i >= 0 && sd->inventory_data[i] && sd->inventory_data[i]->type == IT_ARMOR ) pc->unequipitem(sd,i,3); //R-Accessory |