diff options
Diffstat (limited to 'src/melee2.cc')
-rw-r--r-- | src/melee2.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/melee2.cc b/src/melee2.cc index d519dd8a..130b74ee 100644 --- a/src/melee2.cc +++ b/src/melee2.cc @@ -6211,8 +6211,7 @@ static void process_monster(int m_idx, bool_ is_frien) if (flags & TR_SLAY_EVIL) flg |= RF_EVIL; /* The object cannot be picked up by the monster */ - if (artifact_p(o_ptr) || (r_ptr->flags & flg) || - (o_ptr->art_name)) + if (artifact_p(o_ptr) || (r_ptr->flags & flg)) { /* Only give a message for "take_item" */ if (r_ptr->flags & RF_TAKE_ITEM) |