From d5897e2a49fb6b5913fdc00c082a6747722dd533 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 22 Jun 2024 15:42:58 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B1=B4=EA=B5=AD=20=EC=9C=A0=EB=8B=88?= =?UTF-8?q?=ED=81=AC=20100%=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/func.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hwe/func.php b/hwe/func.php index 82b04474..35c11eeb 100644 --- a/hwe/func.php +++ b/hwe/func.php @@ -1669,8 +1669,6 @@ function tryUniqueItemLottery(RandUtil $rng, General $general, string $acquireTy $prob = 1 / ($genCount * $itemTypeCnt * 0.7 / 3); // 투표율 70%, 설문조사 한번에 2~3개 등장 } else if ($acquireType == '랜덤 임관') { $prob = 1 / ($genCount * $itemTypeCnt / 10 / 2); // 랜임시 2개(10%) 등장(200명중 20명 랜임시도?) - } else if ($acquireType == '건국') { - $prob = 1; // 건국시 100% } $prob *= GameConst::$uniqueTrialCoef; @@ -1684,6 +1682,9 @@ function tryUniqueItemLottery(RandUtil $rng, General $general, string $acquireTy //포인트로 랜덤 유니크 획득 $prob = 1; } + else if ($acquireType == '건국') { + $prob = 1; // 건국시 100% + } foreach (Util::range($maxCnt) as $_idx) { if ($rng->nextBool($prob)) {