summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-11 18:11:30 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-11 18:11:30 -0500
commitfa1f442ef7999d3e84dadd3e9c0823ceb937dab2 (patch)
treebe37134ec84bd981e34130a7cc31fe46862339a0 /crawl-ref/source/items.cc
parent6c8b8a556e0e92e993a82ab1c15ba40cfd180151 (diff)
downloadcrawl-ref-fa1f442ef7999d3e84dadd3e9c0823ceb937dab2.tar.gz
crawl-ref-fa1f442ef7999d3e84dadd3e9c0823ceb937dab2.zip
Apply jpeg's patches in [2876380] (automate Xom testing) and [2876688]
(new Xom effects), tweaked to fit into current trunk.
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index faf4f7168e..2e0d7a7015 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -1475,6 +1475,13 @@ static void _got_item(item_def& item, int quant)
_check_note_item(item);
}
+void note_inscribe_item(item_def &item)
+{
+ _autoinscribe_item(item);
+ _origin_freeze(item, you.pos());
+ _check_note_item(item);
+}
+
// Returns quantity of items moved into player's inventory and -1 if
// the player's inventory is full.
int move_item_to_player( int obj, int quant_got, bool quiet,
@@ -1637,10 +1644,7 @@ int move_item_to_player( int obj, int quant_got, bool quiet,
if (!item.slot)
item.slot = index_to_letter(item.link);
- _autoinscribe_item( item );
-
- _origin_freeze(item, you.pos());
- _check_note_item(item);
+ note_inscribe_item(item);
item.quantity = quant_got;
if (is_blood_potion(mitm[obj]))