diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-04-05 23:30:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-04-07 22:40:03 +0300 |
commit | 8e2f7d6b882b0e1d123d6cd91041d8985991faf7 (patch) | |
tree | c200f8d91b6b216a6743c93898fa5b298514cee6 /src/map/mob.c | |
parent | 2b6e590b9cc8211c623c20242efc4dac9e313b0b (diff) | |
download | hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.tar.gz hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.tar.bz2 hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.tar.xz hercules-8e2f7d6b882b0e1d123d6cd91041d8985991faf7.zip |
Rename clif_charnameack into clif_blname_ack
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index d82e49bcc..fed4d6c60 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2196,7 +2196,7 @@ static 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); + clif->blname_ack(0, &md->bl); #if PACKETVER >= 20131223 // Resend ZC_NOTIFY_MOVEENTRY to Update the HP @@ -2796,7 +2796,7 @@ static void mob_revive(struct mob_data *md, unsigned int hp) skill->unit_move(&md->bl,tick,1); mob->skill_use(md, tick, MSC_SPAWN); if (battle_config.show_mob_info&3) - clif->charnameack (0, &md->bl); + clif->blname_ack(0, &md->bl); } static int mob_guardian_guildchange(struct mob_data *md) @@ -2921,7 +2921,7 @@ static int mob_class_change(struct mob_data *md, int class_) md->target_id = md->attacked_id = 0; //Need to update name display. - clif->charnameack(0, &md->bl); + clif->blname_ack(0, &md->bl); status_change_end(&md->bl,SC_KEEPING,INVALID_TIMER); return 0; } @@ -2933,7 +2933,7 @@ static void mob_heal(struct mob_data *md, unsigned int heal) { nullpo_retv(md); if (battle_config.show_mob_info&3) - clif->charnameack (0, &md->bl); + clif->blname_ack(0, &md->bl); #if PACKETVER >= 20131223 // Resend ZC_NOTIFY_MOVEENTRY to Update the HP if (battle_config.show_monster_hp_bar) |