From cb1a4eab762f953396c49c15fb178e2f47d56105 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Thu, 16 Aug 2007 19:20:45 +0000 Subject: Yet another tutorial update ... and Sif Muna finally gets those other titles. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2007 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/acr.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/acr.cc') 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 ?.)"; + print_formatted_paragraph(msg, get_number_of_cols()); + } + else + mpr("Unknown command."); break; } -- cgit v1.2.3-54-g00ecf