Corrected Endure hit count behavior (#2525)

* Fixes #2508.
* Endure should have 7 hits (instead of 8) in PvM.
Thanks to @kaninhot004!
This commit is contained in:
Aleos 2017-10-19 10:14:57 -04:00 committed by GitHub
parent 7dc6f7577c
commit ea0b54e03f

View File

@ -1685,7 +1685,7 @@ int status_damage(struct block_list *src,struct block_list *target,int64 dhp, in
* Endure count is only reduced by non-players on non-gvg maps.
* val4 signals infinite endure.
**/
if (src && src->type != BL_PC && !map_flag_gvg2(target->m) && !map[target->m].flag.battleground && --(sce->val2) < 0)
if (src && src->type != BL_PC && !map_flag_gvg2(target->m) && !map[target->m].flag.battleground && --(sce->val2) <= 0)
status_change_end(target, SC_ENDURE, INVALID_TIMER);
}
if ((sce=sc->data[SC_GRAVITATION]) && sce->val3 == BCT_SELF) {