From c90631441fced9c54220e4a8905bb5ec8bb6189e Mon Sep 17 00:00:00 2001 From: nothere Date: Sat, 15 May 2004 06:25:25 +0000 Subject: [PATCH] =?utf8?q?=E6=AD=BB=E4=BD=93=E3=81=A8=E9=AA=A8=E3=82=92?= =?utf8?q?=E4=B8=A1=E6=96=B9=E8=90=BD=E3=81=A8=E3=81=99=E8=A8=AD=E5=AE=9A?= =?utf8?q?=E3=81=AE=E9=9D=9E=E3=83=A6=E3=83=8B=E3=83=BC=E3=82=AF=E3=83=A2?= =?utf8?q?=E3=83=B3=E3=82=B9=E3=82=BF=E3=83=BC=E3=81=8C=E9=AA=A8=E3=82=92?= =?utf8?q?=E7=B5=B6=E5=AF=BE=E3=81=AB=E8=90=BD=E3=81=A8=E3=81=95=E3=81=AA?= =?utf8?q?=E3=81=84=20=E3=83=90=E3=82=B0=E3=82=92=E4=BF=AE=E6=AD=A3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/xtra2.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/xtra2.c b/src/xtra2.c index 1d3e99831..415b8d0ce 100644 --- a/src/xtra2.c +++ b/src/xtra2.c @@ -823,8 +823,7 @@ msg_print(" /* Drop a dead corpse? */ if (one_in_(r_ptr->flags1 & RF1_UNIQUE ? 1 : 4) && - ((r_ptr->flags9 & RF9_DROP_CORPSE) || - (r_ptr->flags9 & RF9_DROP_SKELETON)) && + (r_ptr->flags9 & (RF9_DROP_CORPSE | RF9_DROP_SKELETON)) && !(p_ptr->inside_arena || p_ptr->inside_battle || cloned || ((m_ptr->r_idx == today_mon) && is_pet(m_ptr)))) { /* Assume skeleton */ @@ -836,7 +835,7 @@ msg_print(" */ if (!(r_ptr->flags9 & RF9_DROP_SKELETON)) corpse = TRUE; - else if ((r_ptr->flags9 & RF9_DROP_CORPSE) && (r_ptr->flags1 && RF1_UNIQUE)) + else if ((r_ptr->flags9 & RF9_DROP_CORPSE) && (r_ptr->flags1 & RF1_UNIQUE)) corpse = TRUE; /* Else, a corpse is more likely unless we did a "lot" of damage */ -- 2.11.0