From: nothere Date: Fri, 26 Mar 2004 14:05:27 +0000 (+0000) Subject: レア度101以上の通常出現しないモンスターの人形が生成されるバグを修正. X-Git-Tag: v2.1.2~537 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f5231cce10a149275033b6126bfed23f508a296d;p=hengbandforosx%2Fhengbandosx.git レア度101以上の通常出現しないモンスターの人形が生成されるバグを修正. --- diff --git a/src/object2.c b/src/object2.c index 2276f9577..409bbf6b5 100644 --- a/src/object2.c +++ b/src/object2.c @@ -3943,6 +3943,9 @@ static void a_m_aux_4(object_type *o_ptr, int level, int power) /* Ignore dead monsters */ if (!r_ptr->rarity) continue; + /* Ignore uncommon monsters */ + if (r_ptr->rarity > 100) continue; + /* Prefer less out-of-depth monsters */ if (randint0(check)) continue;