From ee2afdbd1610f7a204808056bf1a5826085b89c8 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 14 May 2008 15:00:11 +0000 Subject: FR 1962016: Make hydra headedness more obvious. You now get messages like "The seven-headed hydra bites." and "You slice the 12-headed hydra." FR 1963606: Take a note when you pick up a rune (or the Orb!) for the first time. There are a couple of other files I changed, but I can't remember any big stuff, so it was probably just cleanup. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5029 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/items.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crawl-ref/source/items.cc') diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc index 7e213f7a0d..fa1daf4aae 100644 --- a/crawl-ref/source/items.cc +++ b/crawl-ref/source/items.cc @@ -1448,6 +1448,8 @@ static void _got_item(item_def& item, int quant) } item.flags |= ISFLAG_BEEN_IN_INV; + take_note(Note(NOTE_FOUND_ORB_OR_RUNE, 0, 0, + item.name(DESC_NOCAP_A).c_str())); } // Returns quantity of items moved into player's inventory and -1 if @@ -1607,6 +1609,10 @@ int move_item_to_player( int obj, int quant_got, bool quiet ) if (item.base_type == OBJ_ORBS && you.char_direction == GDT_DESCENDING) { + // Take a note! + take_note(Note(NOTE_FOUND_ORB_OR_RUNE, 0, 0, + item.name(DESC_NOCAP_A).c_str())); + if (!quiet) mpr("Now all you have to do is get back out of the dungeon!"); you.char_direction = GDT_ASCENDING; -- cgit v1.2.3-54-g00ecf