From eef1a2f7cce377f4bd5866dca80c2f88cda8a8f0 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sun, 4 Feb 2018 01:57:39 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B7=80=EB=AA=A8=20=ED=99=95=EB=A5=A0?= =?UTF-8?q?=EC=8B=9D=EC=9D=84=20=EA=B1=B0=EA=BE=B8=EB=A1=9C=20=EC=A0=81?= =?UTF-8?q?=EC=96=B4=EB=91=94=20=EB=B2=84=EA=B7=B8=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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/che_close/func.php b/che_close/func.php index deccfaa..5614a75 100644 --- a/che_close/func.php +++ b/che_close/func.php @@ -450,7 +450,7 @@ function getSpecial($connect, $leader, $power, $intel) { $type = array(20, 31); $special = $type[array_rand($type)]; // 귀모는 50% * 5% = 2.5% - if($special == 31 && randF() < 0.05) { + if($special == 31 && randF() > 0.05) { $type = array(20, 20); $special = $type[array_rand($type)]; } @@ -459,7 +459,7 @@ function getSpecial($connect, $leader, $power, $intel) { $type = array(10, 11, 12, 31); $special = $type[array_rand($type)]; // 귀모는 그중에 25% * 10% = 2.5% - if(($special == 30 || $special == 31) && randF() < 0.05) { + if( $special == 31 && randF() > 0.05) { $type = array(10, 11, 12); $special = $type[array_rand($type)]; } @@ -468,7 +468,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.05) { $type = array(1, 2, 3); $special = $type[array_rand($type)]; }