From d5f9e923c4b469b8edec368ecb3e073e1a64d4bd Mon Sep 17 00:00:00 2001 From: hide_d Date: Mon, 27 Apr 2020 12:54:16 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B8=B0=EC=88=A0=EC=97=B0=EA=B5=AC=20?= =?UTF-8?q?=EC=9A=B0=EC=84=A0=EC=88=9C=EC=9C=84=20=EB=82=AE=EC=B6=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/GeneralAI.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hwe/sammo/GeneralAI.php b/hwe/sammo/GeneralAI.php index cd90fb1a..b7c7aa8c 100644 --- a/hwe/sammo/GeneralAI.php +++ b/hwe/sammo/GeneralAI.php @@ -1821,9 +1821,9 @@ class GeneralAI $nextTech = $nation['tech'] % 1000 + 1; if (!TechLimit($env['startyear'], $env['year'], $nation['tech'] + 1000)) { //한등급 이상 뒤쳐져 있다면, 조금 더 열심히 하자. - $cmdList[] = [$cmd, $intel / ($nextTech / 3000)]; + $cmdList[] = [$cmd, $intel / ($nextTech / 2000)]; } else { - $cmdList[] = [$cmd, $intel / ($nextTech / 1000)]; + $cmdList[] = [$cmd, $intel]; } } } @@ -1949,10 +1949,10 @@ class GeneralAI if ($cmd->isRunnable()) { $nextTech = $nation['tech'] % 1000 + 1; if (!TechLimit($env['startyear'], $env['year'], $nation['tech'] + 1000)) { - //한등급 이상 뒤쳐져 있다면, 조금 더 열심히 하자. + //한등급 이상 뒤쳐져 있다면, 조금 더 열심히 하자. 전쟁중이면 더더욱 $cmdList[] = [$cmd, $intel / ($nextTech / 3000)]; } else { - $cmdList[] = [$cmd, $intel / ($nextTech / 1000)]; + $cmdList[] = [$cmd, $intel]; } } }