summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 7f586238b1..887ffe8987 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -321,6 +321,7 @@ static void _place_monster_corpse(const monsters *monster)
else if (monster->has_ench(ENCH_GLOWING_SHAPESHIFTER))
corpse_class = MONS_GLOWING_SHAPESHIFTER;
+ // Doesn't leave a corpse.
if (mons_weight(corpse_class) == 0 || coinflip())
return;
@@ -348,13 +349,13 @@ static void _place_monster_corpse(const monsters *monster)
return;
}
- // Don't care if 'o' is changed, and it shouldn't be (corpses don't stack)
+ // 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(
- mons_corpse_effect(monster->type) != CE_POISONOUS
- || player_res_poison() > 0 );
+ const bool poison = (mons_corpse_effect(monster->type) == CE_POISONOUS
+ && player_res_poison() <= 0);
+ tutorial_dissection_reminder(!poison);
}
} // end place_monster_corpse()