summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 86672702ac..7a329b6e7a 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -1590,7 +1590,13 @@ void process_command( command_type cmd )
case CMD_NO_CMD:
default:
- mpr("Unknown command.");
+ if (Options.tutorial_left)
+ {
+ std::string msg = "Unknown command. (For a list of commands type <w>?<lightgray>.)";
+ print_formatted_paragraph(msg, get_number_of_cols());
+ }
+ else
+ mpr("Unknown command.");
break;
}