From 9cce2935d8da7147bebe3d4aeb4a4283b779f798 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Mon, 19 Nov 2007 14:08:58 +0000 Subject: A number of tutorial improvements, including reintroducing info on spellbooks. Also: Fix 1832819. (Horn mutation not making helmet slot show as "restricted") Fix 1831983. (Autobutcher now ignores weapons inscribed with !w) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2872 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/monstuff.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/monstuff.cc') diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc index b6fce2e184..7e57b7433b 100644 --- a/crawl-ref/source/monstuff.cc +++ b/crawl-ref/source/monstuff.cc @@ -345,7 +345,11 @@ static void place_monster_corpse(const monsters *monster) // Don't care if 'o' is changed, and it shouldn't be (corpses don't stack) move_item_to_grid( &o, monster->x, monster->y ); if (see_grid(monster->x, monster->y)) - tutorial_dissection_reminder(); + { + tutorial_dissection_reminder( + mons_corpse_effect(monster->type) != CE_POISONOUS + || player_res_poison() > 0 ); + } } // end place_monster_corpse() static void tutorial_inspect_kill() -- cgit v1.2.3-54-g00ecf