diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-31 15:22:32 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-31 15:22:32 +0000 |
commit | 0415b6b6e9ca2a6d08d38fd811e21ffb641a9265 (patch) | |
tree | 3874d4f3acf67f8a45202d9407594a67656e4a67 /src | |
parent | 9709434856f4e5ff3bf803d01c0bcf7a4811cc2d (diff) | |
download | hercules-0415b6b6e9ca2a6d08d38fd811e21ffb641a9265.tar.gz hercules-0415b6b6e9ca2a6d08d38fd811e21ffb641a9265.tar.bz2 hercules-0415b6b6e9ca2a6d08d38fd811e21ffb641a9265.tar.xz hercules-0415b6b6e9ca2a6d08d38fd811e21ffb641a9265.zip |
Fixed new mob's name not sent to the client when the mob is morphed
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8562 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/mob.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 73200bd27..f8cd38851 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2304,8 +2304,7 @@ int mob_class_change (struct mob_data *md, int class_) if(md->lootitem == NULL && md->db->status.mode&MD_LOOTER) md->lootitem=(struct item *)aCalloc(LOOTITEM_SIZE,sizeof(struct item)); - if (battle_config.show_mob_hp) - clif_charnameack(0, &md->bl); + clif_charnameack(0, &md->bl); return 0; } |