diff options
author | CairoLee <cairoliyu@gmail.com> | 2013-06-25 10:58:04 +0800 |
---|---|---|
committer | CairoLee <cairoliyu@gmail.com> | 2013-06-25 10:58:04 +0800 |
commit | ee23711201ddbcd9d92712e8d2b9c1e3c05e7194 (patch) | |
tree | 1f47f5d5c214f61834fa7100947f4f7cbf1a50f9 /src/map/mob.c | |
parent | 5b40d0c2937c2fe4f8e133271d05602543d86277 (diff) | |
download | hercules-ee23711201ddbcd9d92712e8d2b9c1e3c05e7194.tar.gz hercules-ee23711201ddbcd9d92712e8d2b9c1e3c05e7194.tar.bz2 hercules-ee23711201ddbcd9d92712e8d2b9c1e3c05e7194.tar.xz hercules-ee23711201ddbcd9d92712e8d2b9c1e3c05e7194.zip |
Implemented notomb Mapflag
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 3f282bf7e..93ef81811 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2629,7 +2629,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) return 5; // Note: Actually, it's 4. Oh well... // MvP tomb [GreenBox] - if (battle_config.mvp_tomb_enabled && md->spawn->state.boss) + if (battle_config.mvp_tomb_enabled && md->spawn->state.boss && map[md->bl.m].flag.notomb != 1) mvptomb_create(md, mvp_sd ? mvp_sd->status.name : NULL, time(NULL)); if( !rebirth ) { |