summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-22 14:11:26 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-22 14:12:59 +0100
commit790e4bfb63d036c61fb358d7a53b8aa94cc9811c (patch)
tree79b4add68502234e0a320717c1202985aa45af96 /crawl-ref/source/tutorial.cc
parent5d28da5f0fcef8c297b5f7750ab48759e10a28a0 (diff)
downloadcrawl-ref-790e4bfb63d036c61fb358d7a53b8aa94cc9811c.tar.gz
crawl-ref-790e4bfb63d036c61fb358d7a53b8aa94cc9811c.zip
Update tutorial about how to zap wands at monsters.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index c0ee4485d2..77d53e2038 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -3993,8 +3993,14 @@ void tutorial_describe_item(const item_def &item)
#ifdef USE_TILE
ostr << " Alternatively, you can 1) <w>left mouse click</w> on "
"the monster you wish to target (or your player character "
- "to target yourself) while pressing the <w>Alt key</w> "
- "and pick the wand from the menu, or 2) "
+ "to target yourself) while pressing the <w>";
+#ifdef UNIX
+ if (!tiles.is_fullscreen())
+ ostr << "Ctrl + Shift keys";
+ else
+#endif
+ ostr << "Alt key";
+ ostr << "</w> and pick the wand from the menu, or 2) "
"<w>left mouse click</w> on the wand tile and then "
"<w>left mouse click</w> on your target.";
#endif