summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg-inv.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-06-09 12:25:26 -0400
committerNeil Moore <neil@s-z.org>2014-06-09 12:38:13 -0400
commit3b29f72d670d9e01ce1794679a6f86bc44debc72 (patch)
treea09ed995b1a714964a1d64a588b1ba4d5029ad9d /crawl-ref/source/tilereg-inv.cc
parent9704825b45559350f541c90b30445c14e84f8abc (diff)
downloadcrawl-ref-3b29f72d670d9e01ce1794679a6f86bc44debc72.tar.gz
crawl-ref-3b29f72d670d9e01ce1794679a6f86bc44debc72.zip
Remove vestiges of Simulacrum-chunk interactions.
Wieldability, usefulness of butchery and chunks, tile wield tip, and monster food pickup.
Diffstat (limited to 'crawl-ref/source/tilereg-inv.cc')
-rw-r--r--crawl-ref/source/tilereg-inv.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/tilereg-inv.cc b/crawl-ref/source/tilereg-inv.cc
index c64bd052a1..52db4e0801 100644
--- a/crawl-ref/source/tilereg-inv.cc
+++ b/crawl-ref/source/tilereg-inv.cc
@@ -543,10 +543,8 @@ bool InventoryRegion::update_tip_text(string& tip)
// For Sublimation of Blood.
if (wielded)
_handle_wield_tip(tmp, cmd, "\n[Ctrl + L-Click] ", true);
- else if (food_is_meaty(item)
- && you.has_spell(SPELL_SIMULACRUM)
- || item.sub_type == FOOD_CHUNK
- && you.has_spell(SPELL_SUBLIMATION_OF_BLOOD))
+ else if (item.sub_type == FOOD_CHUNK
+ && you.has_spell(SPELL_SUBLIMATION_OF_BLOOD))
{
_handle_wield_tip(tmp, cmd, "\n[Ctrl + L-Click] ");
}