diff options
author | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-12-30 02:13:01 +0000 |
---|---|---|
committer | sketchyphoenix <sketchyphoenix@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-12-30 02:13:01 +0000 |
commit | 544252787ad1d7b55bb1d8299e8779ad7d57fe75 (patch) | |
tree | f494d674a09f60b1b05cedddfd2d8da5b06603ba /src/map/atcommand.c | |
parent | a3b9271d747b51d3589b21e360a96597650fe368 (diff) | |
download | hercules-544252787ad1d7b55bb1d8299e8779ad7d57fe75.tar.gz hercules-544252787ad1d7b55bb1d8299e8779ad7d57fe75.tar.bz2 hercules-544252787ad1d7b55bb1d8299e8779ad7d57fe75.tar.xz hercules-544252787ad1d7b55bb1d8299e8779ad7d57fe75.zip |
Removed a trailing argument left in r13420
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13425 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 81d758513..87c728426 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9028,7 +9028,7 @@ bool is_atcommand(const int fd, struct map_session_data* sd, const char* message { //Fail any #commands without names. if( sscanf(message, "%99s %99[^\n]", cmd, param) == 1 ) { - sprintf(output, "Charcommand failed. Usage: #<command> <char name> <params>.", cmd); + sprintf(output, "Charcommand failed. Usage: #<command> <char name> <params>."); clif_displaymessage(fd, output); return true; } |