diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-28 01:30:15 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-28 01:30:15 +0000 |
commit | f50f76af9cf4c6de540f18a46735f9f19c9da230 (patch) | |
tree | 4d9708b38d9944b753573d94c3eb3cb4fb262151 /src/map/mob.c | |
parent | b587488712a319a66f575d2764edf7bc2e25bcc1 (diff) | |
download | hercules-f50f76af9cf4c6de540f18a46735f9f19c9da230.tar.gz hercules-f50f76af9cf4c6de540f18a46735f9f19c9da230.tar.bz2 hercules-f50f76af9cf4c6de540f18a46735f9f19c9da230.tar.xz hercules-f50f76af9cf4c6de540f18a46735f9f19c9da230.zip |
Some misc cleanups (typos, formatting, forgotten changelog entry etc)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9733 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index e3e40ea95..c624643ef 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1977,7 +1977,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) char message[128]; i_data = itemdb_search(ditem->item_data.nameid); sprintf (message, msg_txt(541), (mvp_sd?mvp_sd->status.name:"???"), md->name, i_data->jname, (float)drop_rate/100); - //MSG: "'%s' won %s's %s (chance: %%%0.02f)" + //MSG: "'%s' won %s's %s (chance: %0.02f%%)" intif_GMmessage(message,strlen(message)+1,0); } // Announce first, or else ditem will be freed. [Lance] @@ -2099,7 +2099,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) char message[128]; i_data = itemdb_exists(item.nameid); sprintf (message, msg_txt(541), mvp_sd->status.name, md->name, i_data->jname, temp/100.); - //MSG: "'%s' won %s's %s (chance: %%%0.02f)" + //MSG: "'%s' won %s's %s (chance: %0.02f%%)" intif_GMmessage(message,strlen(message)+1,0); } |