From 3fbe1fb63d7f6a3c8d23336cf8fb20596d330df7 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sun, 28 Feb 2021 01:39:47 +0900 Subject: [PATCH] =?UTF-8?q?=EB=94=94=EB=B2=84=EA=B7=B82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/GeneralAI.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hwe/sammo/GeneralAI.php b/hwe/sammo/GeneralAI.php index 359c6c60..900ebebf 100644 --- a/hwe/sammo/GeneralAI.php +++ b/hwe/sammo/GeneralAI.php @@ -3371,6 +3371,7 @@ class GeneralAI foreach($this->nationPolicy->priority as $actionName){ if(!property_exists($this->nationPolicy, 'can'.$actionName)){ + trigger_error ("can{$actionName}이 없음", E_USER_NOTICE ); continue; } if(!$this->nationPolicy->{'can'.$actionName}){ @@ -3524,6 +3525,7 @@ class GeneralAI foreach($this->generalPolicy->priority as $actionName){ if(!property_exists($this->generalPolicy, 'can'.$actionName)){ + trigger_error ("can{$actionName}이 없음", E_USER_NOTICE ); continue; } if(!($this->generalPolicy->{'can'.$actionName})){