diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-25 15:08:26 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-09-25 15:08:26 +0000 |
commit | 18f01d4f113b8ac7430946688292011c5fc3c2fb (patch) | |
tree | b76f7c16e46fc00e717299a2bb178af735b34a94 /src/map/clif.c | |
parent | 38b486e1074537b27f6c523b3f79d47128dfcdf6 (diff) | |
download | hercules-18f01d4f113b8ac7430946688292011c5fc3c2fb.tar.gz hercules-18f01d4f113b8ac7430946688292011c5fc3c2fb.tar.bz2 hercules-18f01d4f113b8ac7430946688292011c5fc3c2fb.tar.xz hercules-18f01d4f113b8ac7430946688292011c5fc3c2fb.zip |
- Removed config setting allow_atcommand_when_mute as it's no longer used (see manner_system in misc.conf for it's replacement)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8860 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 538c4aab4..14b3a06b1 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7853,7 +7853,6 @@ int clif_charnameack (int fd, struct block_list *bl) if (battle_config.show_mob_info&1)
str_p += sprintf(str_p, "HP: %u/%u | ", md->status.hp, md->status.max_hp);
if (battle_config.show_mob_info&2)
-
str_p += sprintf(str_p, "HP: %d%% | ",
md->status.max_hp > 10000?
md->status.hp/(md->status.max_hp/100):
|