From b23e86c84c2532d5900422295c5b352b99a13b30 Mon Sep 17 00:00:00 2001 From: skotlex Date: Tue, 6 Feb 2007 00:03:16 +0000 Subject: - Fixed @lvup, #lvup not doing a stat reset and lowering your status points if you had 0 status points at that time. - Fixed MvP exp and item rewards being given even when the mob_dead flag specifies you should not receive exp or items. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9795 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/mob.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/mob.c') diff --git a/src/map/mob.c b/src/map/mob.c index bba0505c6..7434aae3a 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2058,7 +2058,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) double exp; //mapflag: noexp check [Lorky] - if (map[m].flag.nobaseexp) + if (map[m].flag.nobaseexp || !(type&2)) exp =1; else { exp = md->db->mexp; @@ -2075,7 +2075,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) clif_mvp_exp(mvp_sd,mexp); pc_gainexp(mvp_sd, &md->bl, mexp,0); log_mvp[1] = mexp; - if(!map[m].flag.nomvploot) + if(!map[m].flag.nomvploot && !(type&1)) for(j=0;j<3;j++){ i = rand() % 3; -- cgit v1.2.3-70-g09d2