summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-11 10:13:34 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-01-11 10:35:45 +0100
commit03630bb93dae332607f4ffea61e358083ee36ebf (patch)
tree6692412bf0bdf772674e506a285b9dd67b629509 /crawl-ref
parentcac38e346d15026b46a9449a8b2ba0607c1a95f9 (diff)
downloadcrawl-ref-03630bb93dae332607f4ffea61e358083ee36ebf.tar.gz
crawl-ref-03630bb93dae332607f4ffea61e358083ee36ebf.zip
In the skills menu, move Stealth to the right column, above T&D.
This frees one line at the bottom on consoles with 24 rows.
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/skills2.cc13
1 files changed, 11 insertions, 2 deletions
diff --git a/crawl-ref/source/skills2.cc b/crawl-ref/source/skills2.cc
index 3dd241f9fd..8f3a1f40be 100644
--- a/crawl-ref/source/skills2.cc
+++ b/crawl-ref/source/skills2.cc
@@ -1283,11 +1283,14 @@ static const skill_type skill_display_order[] =
SK_BLANK_LINE,
- SK_ARMOUR, SK_DODGING, SK_STEALTH, SK_STABBING, SK_SHIELDS, SK_TRAPS_DOORS,
+ SK_ARMOUR, SK_DODGING, SK_STABBING, SK_SHIELDS,
- SK_BLANK_LINE,
SK_COLUMN_BREAK,
+ SK_STEALTH, SK_TRAPS_DOORS,
+
+ SK_BLANK_LINE,
+
SK_SPELLCASTING, SK_CONJURATIONS, SK_ENCHANTMENTS, SK_SUMMONINGS,
SK_NECROMANCY, SK_TRANSLOCATIONS, SK_TRANSMUTATIONS,
SK_FIRE_MAGIC, SK_ICE_MAGIC, SK_AIR_MAGIC, SK_EARTH_MAGIC, SK_POISON_MAGIC,
@@ -1450,6 +1453,12 @@ static void _display_skill_table(bool show_aptitudes, bool show_description)
{
cprintf("Press the letter of a skill to choose whether you want to "
"practise it.");
+#if 0
+ cprintf("Press the letter of a skill to choose whether you want to "
+ "practise it. A" EOL
+ "greyish skill will increase at a slower rate and ease "
+ "training of others.");
+#endif
}
cgotoxy(1, bottom_line-1);