diff options
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 18b514616..14a520ab8 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2081,10 +2081,15 @@ void mob_damage(struct mob_data *md, struct block_list *src, int damage) if (battle_config.show_mob_info&3) clif_charnameack (0, &md->bl); - + if (!src) return; +#if PACKETVER >= 20120404 + if( src->type == BL_PC && !(md->status.mode&MD_BOSS) ) + clif_monster_hp_bar(md, ((TBL_PC*)src)->fd); +#endif + if( md->special_state.ai == 2 ) {//LOne WOlf explained that ANYONE can trigger the marine countdown skill. [Skotlex] md->state.alchemist = 1; mobskill_use(md, gettick(), MSC_ALCHEMIST); |