diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-31 18:02:11 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-31 18:02:11 +0000 |
commit | 6ecdfa051ab4adbf84938b18f44c5f12f05dbe3a (patch) | |
tree | ad62b11aee110f7eb7d8dd1160bec740a9d3ea84 /src/map/atcommand.c | |
parent | 861ce796764e45d11c335f03af1126d8ffa45056 (diff) | |
download | hercules-6ecdfa051ab4adbf84938b18f44c5f12f05dbe3a.tar.gz hercules-6ecdfa051ab4adbf84938b18f44c5f12f05dbe3a.tar.bz2 hercules-6ecdfa051ab4adbf84938b18f44c5f12f05dbe3a.tar.xz hercules-6ecdfa051ab4adbf84938b18f44c5f12f05dbe3a.zip |
* Updated new atcommand messages in msg_athena to be more grammar-friendly.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16725 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 3cd9bc582..4efc94660 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1594,7 +1594,8 @@ ACMD_FUNC(help) } if (!config_setting_lookup_string(help, command_name, &text)) { - clif_displaymessage(fd, msg_txt(988)); // There is no help for this command_name. + sprintf(atcmd_output, msg_txt(988), atcommand_symbol, command_name); // There is no help for %c%s. + clif_displaymessage(fd, atcmd_output); atcommand_get_suggestions(sd, command_name, true); return -1; } |