diff options
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 2e92bac70..197e28bfc 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2166,7 +2166,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) (!map[m].flag.nobaseexp || !map[m].flag.nojobexp) //Gives Exp ) { //Experience calculation. int bonus = 100; //Bonus on top of your share (common to all attackers). - if (md->sc.data[SC_RICHMANKIM] && !status_get_mode(&md->bl)&MD_BOSS) + if (md->sc.data[SC_RICHMANKIM] && !md->db->mexp) bonus += md->sc.data[SC_RICHMANKIM]->val2; if(sd) { temp = status_get_class(&md->bl); |