Follow up r16228 fixed logical problem with previous implementation (the see vals would break).

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16231 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
shennetsind 2012-06-04 16:17:38 +00:00
parent 241886f562
commit 2ee49a207a

View File

@ -6002,6 +6002,7 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
struct status_data *status; struct status_data *status;
struct view_data *vd; struct view_data *vd;
int opt_flag, calc_flag, undead_flag, val_flag = 0, tick_time = 0; int opt_flag, calc_flag, undead_flag, val_flag = 0, tick_time = 0;
bool sc_isnew = true;
nullpo_ret(bl); nullpo_ret(bl);
sc = status_get_sc(bl); sc = status_get_sc(bl);
@ -8274,11 +8275,10 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
if((sce=sc->data[type])) {// reuse old sc if((sce=sc->data[type])) {// reuse old sc
if( sce->timer != INVALID_TIMER ) if( sce->timer != INVALID_TIMER )
delete_timer(sce->timer, status_change_timer); delete_timer(sce->timer, status_change_timer);
sc_isnew = false;
} else {// new sc } else {// new sc
++(sc->count); ++(sc->count);
sce = sc->data[type] = ers_alloc(sc_data_ers, struct status_change_entry); sce = sc->data[type] = ers_alloc(sc_data_ers, struct status_change_entry);
if ( StatusChangeStateTable[type] ) /* non-zero */
status_calc_state(bl,sc,( enum scs_flag ) StatusChangeStateTable[type],true);
} }
sce->val1 = val1; sce->val1 = val1;
sce->val2 = val2; sce->val2 = val2;
@ -8292,6 +8292,10 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
if (calc_flag) if (calc_flag)
status_calc_bl(bl,calc_flag); status_calc_bl(bl,calc_flag);
if ( sc_isnew && StatusChangeStateTable[type] ) /* non-zero */
status_calc_state(bl,sc,( enum scs_flag ) StatusChangeStateTable[type],true);
if(sd && sd->pd) if(sd && sd->pd)
pet_sc_check(sd, type); //Skotlex: Pet Status Effect Healing pet_sc_check(sd, type); //Skotlex: Pet Status Effect Healing