diff options
Diffstat (limited to 'src')
-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; } |