summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-13 14:32:49 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-13 14:32:49 +0000
commitea1739b75f1ab08f4a808eb3fc4d26b0cbb9b69e (patch)
treebca15787a1121a6b329db32345bcd068e9de1fd5 /crawl-ref/source/libgui.cc
parenta347741c87331ccd0331c20f050f3b8ab75f791a (diff)
downloadcrawl-ref-ea1739b75f1ab08f4a808eb3fc4d26b0cbb9b69e.tar.gz
crawl-ref-ea1739b75f1ab08f4a808eb3fc4d26b0cbb9b69e.zip
Fix 1940883: Change "tooltip" information to new key settings.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4220 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libgui.cc')
-rw-r--r--crawl-ref/source/libgui.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/libgui.cc b/crawl-ref/source/libgui.cc
index bf8d0029ab..73a83f25be 100644
--- a/crawl-ref/source/libgui.cc
+++ b/crawl-ref/source/libgui.cc
@@ -1345,7 +1345,8 @@ static int _handle_mouse_motion(int mouse_x, int mouse_y, bool init)
&& item.sub_type != CORPSE_SKELETON
&& !food_is_rotten(item))
{
- desc += EOL "[Shift-L-Click] Dissect (D)";
+ // TODO: Differentiate bottle/butcher for vampires.
+ desc += EOL "[Shift-L-Click] Chop up (c)";
if (you.species == SP_VAMPIRE)
desc += EOL "[Shift-R-Click] Drink blood (e)";
@@ -1409,13 +1410,13 @@ static int _handle_mouse_motion(int mouse_x, int mouse_y, bool init)
if (item.sub_type >= MISC_DECK_OF_ESCAPE
&& item.sub_type <= MISC_DECK_OF_DEFENCE)
{
- desc += "Draw a card (E)";
+ desc += "Draw a card (v)";
desc += EOL "[Ctrl-L-Click] Unwield";
break;
}
// else fall-through
case OBJ_STAVES + 18: // rods - other staves handled above
- desc += "Evoke (E)";
+ desc += "Evoke (v)";
desc += EOL "[Ctrl-L-Click] Unwield";
break;
case OBJ_ARMOUR:
@@ -1446,7 +1447,7 @@ static int _handle_mouse_motion(int mouse_x, int mouse_y, bool init)
}
break;
case OBJ_WANDS:
- desc += "Zap (z)";
+ desc += "Zap (Z)";
if (wielded)
desc += EOL "[Ctrl-L-Click] Unwield";
break;