summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
authortoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-31 15:22:32 +0000
committertoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-31 15:22:32 +0000
commit0415b6b6e9ca2a6d08d38fd811e21ffb641a9265 (patch)
tree3874d4f3acf67f8a45202d9407594a67656e4a67 /src/map
parent9709434856f4e5ff3bf803d01c0bcf7a4811cc2d (diff)
downloadhercules-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/map')
-rw-r--r--src/map/mob.c3
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;
}