From a07622d0848f657d10eb114a7630aaede2e2b2a4 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sat, 25 Apr 2020 23:57:31 +0900 Subject: [PATCH] =?UTF-8?q?reqGold=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/AutorunNationPolicy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/AutorunNationPolicy.php b/hwe/sammo/AutorunNationPolicy.php index a712202b..fd1a9e39 100644 --- a/hwe/sammo/AutorunNationPolicy.php +++ b/hwe/sammo/AutorunNationPolicy.php @@ -172,10 +172,10 @@ class AutorunNationPolicy { $reqGold = $defaultCrewType->costWithTech($nation['tech'], GameConst::$defaultStatNPCMax * 100); $reqRice = $defaultCrewType->riceWithTech($nation['tech'], GameConst::$defaultStatNPCMax * 100); if($this->reqNPCWarGold === 0){ - $this->reqNPCWarGold = Util::round($reqGold * 2, -2); + $this->reqNPCWarGold = Util::round($reqGold * 4, -2); } if($this->reqNPCWarRice === 0){ - $this->reqNPCWarRice = Util::round($reqRice * 2, -2); + $this->reqNPCWarRice = Util::round($reqRice * 4, -2); } }