추방 후 임관 확률 재 조정

This commit is contained in:
2018-06-13 03:27:08 +09:00
parent 52d1a48c0b
commit 28a690cbba
+1 -1
View File
@@ -334,7 +334,7 @@ function processAI($no) {
if($nationCnt == 0 || $notFullNationCnt == 0){
$available = false;
}
else if(Util::randBool(sqrt(1 / $nationCnt / $notFullNationCnt))){
else if(Util::randBool(pow(1 / $nationCnt / pow($notFullNationCnt, 3), 1/4))){
//국가가 1개일 경우에는 '임관하지 않음'
$available = false;
}