summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-15 11:32:58 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-15 11:32:58 +0000
commite1930b24b4d48d92ee6491a7c72b4b8d65ce42c3 (patch)
tree505c14859be8150436c53e0f2ebca7c0d9399b89 /crawl-ref/source/misc.cc
parent5cd3548ac850a231358ca7cfa92f712a4303c8cf (diff)
downloadcrawl-ref-e1930b24b4d48d92ee6491a7c72b4b8d65ce42c3.tar.gz
crawl-ref-e1930b24b4d48d92ee6491a7c72b4b8d65ce42c3.zip
Fix dangling inscription for coagulated blood.
Properly use settings to decide whether to pick up useless or inedible stuff rather than forcing autopickup to be forbidden. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6554 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc25
1 files changed, 13 insertions, 12 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 4dd1b21753..f5be8ee92e 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -611,18 +611,19 @@ bool maybe_coagulate_blood_potions_inv(item_def &blood)
if (freeslot >= 0 && freeslot < ENDOFPACK
&& !is_valid_item(you.inv[freeslot]))
{
- item_def &item = you.inv[freeslot];
- item.link = freeslot;
- item.slot = index_to_letter(item.link);
- item.base_type = OBJ_POTIONS;
- item.sub_type = POT_BLOOD_COAGULATED;
- item.quantity = coag_count;
- item.x = -1;
- item.y = -1;
- item.plus = 0;
- item.plus2 = 0;
- item.special = 0;
- item.flags = 0;
+ item_def &item = you.inv[freeslot];
+ item.link = freeslot;
+ item.slot = index_to_letter(item.link);
+ item.base_type = OBJ_POTIONS;
+ item.sub_type = POT_BLOOD_COAGULATED;
+ item.quantity = coag_count;
+ item.x = -1;
+ item.y = -1;
+ item.plus = 0;
+ item.plus2 = 0;
+ item.special = 0;
+ item.flags = 0;
+ item.inscription = "";
item_colour(item);
CrawlHashTable &props_new = item.props;