diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-30 17:01:53 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-30 17:01:53 +0000 |
commit | cb55c69231680f1b8cbb6c241a1ca866f1f3754f (patch) | |
tree | 088af1ccd77318dd8ae6866bae63a7810b829c89 /src/map/clif.c | |
parent | 487e633d50f25571dd89b4efc3e737f89376a938 (diff) | |
download | hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.tar.gz hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.tar.bz2 hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.tar.xz hercules-cb55c69231680f1b8cbb6c241a1ca866f1f3754f.zip |
Fixed typos from previous revisions :)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10098 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 5d4bcc457..a9214a137 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8478,7 +8478,7 @@ void clif_parse_GetCharNameRequest(int fd, struct map_session_data *sd) { //Possible bot? Thanks to veider and qspirit //FIXME: Still isn't perfected as clients keep asking for this on legitimate situations. unsigned char gm_msg[256]; - sprintf(gm_msg, "Hack on NameRequest: character '%s' (account: %d) requests name of invisible chars.", sd->status.name, sd->status.account_id); + sprintf(gm_msg, "Hack on NameRequest: character '%s' (account: %d) requested the name of an invisible target.", sd->status.name, sd->status.account_id); ShowWarning(gm_msg); // information is sended to all online GM intif_wis_message_to_gm(wisp_server_name, battle_config.hack_info_GM_level, gm_msg); |