From d06906cf20e1478277f75450bef8f4cbe74c1c31 Mon Sep 17 00:00:00 2001 From: henkma Date: Mon, 20 Oct 2003 15:09:05 +0000 Subject: [PATCH] =?utf8?q?auto=5Fscum=E5=BB=83=E6=AD=A2=E3=81=AB=E5=90=91?= =?utf8?q?=E3=81=91=E3=81=A6,=20=E3=82=A2=E3=82=A4=E3=83=86=E3=83=A0?= =?utf8?q?=E7=94=9F=E6=88=90,=20=E3=83=94=E3=83=83=E3=83=88,=20=E3=83=8D?= =?utf8?q?=E3=82=B9=E3=83=88=E3=82=92=E8=AA=BF=E6=95=B4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/object2.c | 2 +- src/rooms.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/object2.c b/src/object2.c index e71fe1dd2..4131f1f17 100644 --- a/src/object2.c +++ b/src/object2.c @@ -4168,7 +4168,7 @@ void apply_magic(object_type *o_ptr, int lev, u32b mode) if (f1 > d_info[dungeon_type].obj_good) f1 = d_info[dungeon_type].obj_good; /* Base chance of being "great" */ - f2 = f1 / 2; + f2 = f1 * 2 / 3; /* Maximal chance of being "great" */ if ((p_ptr->pseikaku != SEIKAKU_MUNCHKIN) && (f2 > d_info[dungeon_type].obj_great)) diff --git a/src/rooms.c b/src/rooms.c index 0b0fc9fd7..eb0c17cb1 100644 --- a/src/rooms.c +++ b/src/rooms.c @@ -2126,7 +2126,7 @@ static bool build_type5(void) while (attempts--) { /* Get a (hard) monster type */ - r_idx = get_mon_num(dun_level + 10); + r_idx = get_mon_num(dun_level + 11); r_ptr = &r_info[r_idx]; /* Decline incorrect alignment */ @@ -2355,7 +2355,7 @@ static bool build_type6(void) while (attempts--) { /* Get a (hard) monster type */ - r_idx = get_mon_num(dun_level + 10); + r_idx = get_mon_num(dun_level + 11); r_ptr = &r_info[r_idx]; /* Decline incorrect alignment */ -- 2.11.0