diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/mob.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 8ce7785c0..70b0b0f0c 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1785,6 +1785,9 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) double per; //Your share of the mob's exp int bonus; //Bonus on top of your share. + if (status_isdead(tmpbl[i]) || tmpbl[i]->m != md->bl.m) + continue; //When someone is dead or on another map, their share of exp is gone. + if (!battle_config.exp_calc_type && md->tdmg) //jAthena's exp formula based on total damage. per = (double)md->dmglog[i].dmg/(double)md->tdmg; |