From 7bfe279684f65846e4c2255b5ee55551d2ab0656 Mon Sep 17 00:00:00 2001 From: Lance Date: Wed, 7 Jun 2006 02:03:22 +0000 Subject: * [Fixed]: - temp++ gets issued before if(mvp_damage<(unsigned int)md->dmglog[i].dmg) in mob_damage. Thanks to seahorsix. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7023 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 3 +++ src/map/mob.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index c6ea229e9..aa6bee75e 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,9 @@ 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. 2006/06/07 + * [Fixed]: + - temp++ gets issued before if(mvp_damage<(unsigned int)md->dmglog[i].dmg) in + mob_damage. Thanks to seahorsix. [Lance] * [Fixed]: - Corrected login-server SQL to use *((ulong *)p) instead of (ulong)p [Lance] * [Optimized]: diff --git a/src/map/mob.c b/src/map/mob.c index 3201b769c..ab25d1779 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1733,7 +1733,6 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) continue; if(tmpsd[temp]->bl.m != md->bl.m || pc_isdead(tmpsd[temp])) continue; - temp++; if(mvp_damage<(unsigned int)md->dmglog[i].dmg){ third_sd = second_sd; @@ -1741,6 +1740,8 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) mvp_sd=tmpsd[temp]; mvp_damage=md->dmglog[i].dmg; } + + temp++; // [Lance] } count = i; //Total number of attackers. -- cgit v1.2.3-70-g09d2