From 0cb03efd7c438ee8fc5d9444e0c8e60a8eeb7f16 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Mon, 20 Jun 2016 22:49:05 +0200 Subject: Remove redundant parens from RFn_* in expressions --- src/traps.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/traps.cc') diff --git a/src/traps.cc b/src/traps.cc index 7b286434..7911ad2d 100644 --- a/src/traps.cc +++ b/src/traps.cc @@ -2823,9 +2823,9 @@ bool_ mon_hit_trap(int m_idx) cptr note_dies = " dies."; /* Some monsters get "destroyed" */ - if ((r_ptr->flags3 & (RF3_DEMON)) || - (r_ptr->flags3 & (RF3_UNDEAD)) || - (r_ptr->flags2 & (RF2_STUPID)) || + if ((r_ptr->flags3 & RF3_DEMON) || + (r_ptr->flags3 & RF3_UNDEAD) || + (r_ptr->flags2 & RF2_STUPID) || (strchr("Evg", r_ptr->d_char))) { /* Special note at death */ -- cgit v1.2.3