From 71fc85edf61aed46b589a2ee5bc7b8ef55c5cc77 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Sun, 25 Nov 2007 21:28:10 +0000 Subject: * A few corrections and changes to the tutorial. * Reintroduce protection from harm while praying for Ely and Yred (This weakens Ely's healing effect in comparison to Zin and TSO, so maybe Ely should get both the 1/10 AND the prayer bonus.) * FR 1829904: add '%' shortcut to character selection menu git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2914 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/newgame.cc | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/newgame.cc') diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc index e3f4489a46..4690556c06 100644 --- a/crawl-ref/source/newgame.cc +++ b/crawl-ref/source/newgame.cc @@ -2836,7 +2836,7 @@ spec_query: cprintf(" (Press T to enter a tutorial.)"); cprintf(EOL EOL); textcolor( CYAN ); - cprintf("You can be: (Press ? for more information)"); + cprintf("You can be: (Press ? for more information, %% for a list of aptitudes)"); cprintf(EOL EOL); textcolor( LIGHTGREY ); @@ -2918,6 +2918,11 @@ spec_query: list_commands(false, '1'); return choose_race(); } + else if ( keyn == '%' ) + { + list_commands(false, '%'); + return choose_race(); + } if ((keyn == '\r' || keyn == '\n') && Options.prev_race && prevraceok) keyn = Options.prev_race; @@ -3036,7 +3041,7 @@ job_query: cprintf(EOL EOL); textcolor( CYAN ); - cprintf("You can be: (Press ? for more information)" EOL EOL); + cprintf("You can be: (Press ? for more information, %% for a list of aptitudes)" EOL EOL); textcolor( LIGHTGREY ); int j = 0; @@ -3110,6 +3115,11 @@ job_query: list_commands(false, '2'); return choose_class(); } + else if ( keyn == '%' ) + { + list_commands(false, '%'); + return choose_class(); + } if ((keyn == '\r' || keyn == '\n') && Options.prev_cls && prevclassok) keyn = Options.prev_cls; -- cgit v1.2.3-54-g00ecf