diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-02 03:38:56 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-02 03:38:56 +0000 |
commit | d392d39696b55991621061838d36d40de63d80a3 (patch) | |
tree | 8668eb720923a248a65698af8c3d9382dc897c30 /src/map/clif.c | |
parent | 36d63937539d16e61ef44968ebe0610956b69dfa (diff) | |
download | hercules-d392d39696b55991621061838d36d40de63d80a3.tar.gz hercules-d392d39696b55991621061838d36d40de63d80a3.tar.bz2 hercules-d392d39696b55991621061838d36d40de63d80a3.tar.xz hercules-d392d39696b55991621061838d36d40de63d80a3.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6927 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index fde947661..b6a9f38f5 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7835,7 +7835,7 @@ int clif_charnameack (int fd, struct block_list *bl) } else if (battle_config.show_mob_hp) {
char mobhp[50];
WBUFW(buf, 0) = cmd = 0x195;
- sprintf(mobhp, "HP: %d/%d", md->status.hp, md->status.max_hp);
+ sprintf(mobhp, "HP: %u/%u", md->status.hp, md->status.max_hp);
//Even thought mobhp ain't a name, we send it as one so the client
//can parse it.
memcpy(WBUFP(buf,30), mobhp, NAME_LENGTH);
|