From 7c74a40bafe64f27eeba143af3ca5dd79e7b6bde Mon Sep 17 00:00:00 2001 From: hide_d Date: Mon, 27 Apr 2020 02:39:26 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=B9=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/a_npcList.php | 2 +- hwe/sammo/GeneralAI.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hwe/a_npcList.php b/hwe/a_npcList.php index 48ecf658..4dc57359 100644 --- a/hwe/a_npcList.php +++ b/hwe/a_npcList.php @@ -125,7 +125,7 @@ else{ - "; + diff --git a/hwe/sammo/GeneralAI.php b/hwe/sammo/GeneralAI.php index 0cfaea6f..e19e691c 100644 --- a/hwe/sammo/GeneralAI.php +++ b/hwe/sammo/GeneralAI.php @@ -2697,7 +2697,7 @@ class GeneralAI protected function do거병(): ?GeneralCommand { $general = $this->general; - // 초반이면서 능력이 좋은놈 위주로 1.4%확률로 거병 + // 초반이면서 능력이 좋은놈 위주로 1%확률로 거병 if($general->getVar('makelimit')){ return null; } @@ -2713,7 +2713,7 @@ class GeneralAI return null; } - if(!Util::randBool(0.014)){ + if(!Util::randBool(0.01)){ return null; }