diff options
author | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-06 23:27:46 +0000 |
---|---|---|
committer | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-06 23:27:46 +0000 |
commit | 9845d44d11f8a36ad34ece07c4d5b0f698e571d2 (patch) | |
tree | ba016fa124eb74628e6dbe2b25056a0540bed7fb /src/map/mob.c | |
parent | 34802b5a596874b1e4bf088444cc14d19f7aa24d (diff) | |
download | hercules-9845d44d11f8a36ad34ece07c4d5b0f698e571d2.tar.gz hercules-9845d44d11f8a36ad34ece07c4d5b0f698e571d2.tar.bz2 hercules-9845d44d11f8a36ad34ece07c4d5b0f698e571d2.tar.xz hercules-9845d44d11f8a36ad34ece07c4d5b0f698e571d2.zip |
Changed Mental Vision fix (r12507) to check for mexp rather then the boss flag (so as not to include mini bosses).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12510 54d463be-8e91-2dee-dedb-b68131a5f0ec
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); |