summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.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/misc.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/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 7cb14b0a77..8cb613253b 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -189,8 +189,7 @@ void turn_corpse_into_chunks(item_def &item, bool bloodspatter,
item.quantity = 1 + random2(max_chunks);
item.quantity = stepdown_value(item.quantity, 4, 4, 12, 12);
- bool wants_for_spells = you.has_spell(SPELL_SIMULACRUM)
- || you.has_spell(SPELL_SUBLIMATION_OF_BLOOD);
+ bool wants_for_spells = you.has_spell(SPELL_SUBLIMATION_OF_BLOOD);
// Don't mark it as dropped if we are forcing autopickup of chunks.
if (you.force_autopickup[OBJ_FOOD][FOOD_CHUNK] <= 0
&& is_bad_food(item) && !wants_for_spells)