From 79cd47ac14fbf04ce9add05d9bba2449347203b6 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sun, 4 Feb 2018 02:07:45 +0900 Subject: [PATCH] =?UTF-8?q?=EB=82=B4=ED=8A=B9=20=ED=99=95=EB=A5=A0=20?= =?UTF-8?q?=EC=9E=98=EB=AA=BB=20=EC=A0=81=EC=9D=80=20=EB=B6=80=EB=B6=84=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- che_close/func.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/che_close/func.php b/che_close/func.php index 5614a75..985291f 100644 --- a/che_close/func.php +++ b/che_close/func.php @@ -451,15 +451,14 @@ function getSpecial($connect, $leader, $power, $intel) { $special = $type[array_rand($type)]; // 귀모는 50% * 5% = 2.5% if($special == 31 && randF() > 0.05) { - $type = array(20, 20); - $special = $type[array_rand($type)]; + $special = 20; } //무장 } elseif($power >= $intel) { $type = array(10, 11, 12, 31); $special = $type[array_rand($type)]; // 귀모는 그중에 25% * 10% = 2.5% - if( $special == 31 && randF() > 0.05) { + if( $special == 31 && randF() > 0.1) { $type = array(10, 11, 12); $special = $type[array_rand($type)]; } @@ -468,7 +467,7 @@ function getSpecial($connect, $leader, $power, $intel) { $type = array(1, 2, 3, 31); $special = $type[array_rand($type)]; // 거상, 귀모는 그중에 25% * 10% = 2.5% - if($special == 31 && randF() > 0.05) { + if($special == 31 && randF() > 0.1) { $type = array(1, 2, 3); $special = $type[array_rand($type)]; }