summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg-inv.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2013-08-10 04:38:53 -0400
committerNeil Moore <neil@s-z.org>2013-08-10 04:49:42 -0400
commit662fae26a539068d907636f1f8eab2a794090403 (patch)
treeba7c71496f2ae8ab737b37c3838b4a937d13a6f0 /crawl-ref/source/tilereg-inv.cc
parent47f5d088a5e46e198d379f3c96e5db0cc1ec4206 (diff)
downloadcrawl-ref-662fae26a539068d907636f1f8eab2a794090403.tar.gz
crawl-ref-662fae26a539068d907636f1f8eab2a794090403.zip
Don't treat preserved meat as sublimable.
But do continue to treat it as simulacrable.
Diffstat (limited to 'crawl-ref/source/tilereg-inv.cc')
-rw-r--r--crawl-ref/source/tilereg-inv.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/tilereg-inv.cc b/crawl-ref/source/tilereg-inv.cc
index ccf032912b..351d1594d3 100644
--- a/crawl-ref/source/tilereg-inv.cc
+++ b/crawl-ref/source/tilereg-inv.cc
@@ -535,8 +535,9 @@ bool InventoryRegion::update_tip_text(string& tip)
if (wielded)
_handle_wield_tip(tmp, cmd, "\n[Ctrl + L-Click] ", true);
else if (food_is_meaty(item)
- && (you.has_spell(SPELL_SUBLIMATION_OF_BLOOD)
- || you.has_spell(SPELL_SIMULACRUM)))
+ && you.has_spell(SPELL_SIMULACRUM)
+ || item.sub_type == FOOD_CHUNK
+ && you.has_spell(SPELL_SUBLIMATION_OF_BLOOD))
{
_handle_wield_tip(tmp, cmd, "\n[Ctrl + L-Click] ");
}