summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-14 09:00:38 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-14 09:00:38 +0000
commitd173ffd6c2eee6f558d8bf6094e34e04c23a0d7e (patch)
tree51135bad6c63da8a7d2eb68df96411497c312bd6 /crawl-ref
parenta645ea7c241525d80c84cf3a843cd19dc29e8d17 (diff)
downloadcrawl-ref-d173ffd6c2eee6f558d8bf6094e34e04c23a0d7e.tar.gz
crawl-ref-d173ffd6c2eee6f558d8bf6094e34e04c23a0d7e.zip
Show item being inscribed before inscribing (Erik.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1303 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/item_use.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index e7afb32037..703550e896 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -2671,7 +2671,6 @@ void zap_wand(void)
you.turn_is_over = true;
} // end zap_wand()
-/*** HP CHANGE ***/
void inscribe_item()
{
int item_slot;
@@ -2690,6 +2689,7 @@ void inscribe_item()
canned_msg( MSG_OK );
return;
}
+ mpr( item_name( you.inv[item_slot], DESC_INVENTORY ), MSGCH_EQUIPMENT );
mpr( "Inscribe with what? ", MSGCH_PROMPT );
get_input_line( buf, sizeof(buf) );
you.inv[item_slot].inscription = std::string(buf);