From cec7726731c2f8e0ae960f5fa4b8749f955083f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A5=98=ED=99=94=EC=98=81?= Date: Mon, 19 Jan 2026 22:50:11 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B0=A9=EB=9E=91=EA=B5=B0=EC=9D=B4=20?= =?UTF-8?q?=EB=B9=88=EB=B2=88=ED=95=98=EA=B2=8C=20=ED=95=B4=EC=82=B0?= =?UTF-8?q?=ED=95=98=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0=20?= =?UTF-8?q?=EC=8B=9C=EB=8F=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/GeneralAI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwe/sammo/GeneralAI.php b/hwe/sammo/GeneralAI.php index 5b89f246..5364c7b1 100644 --- a/hwe/sammo/GeneralAI.php +++ b/hwe/sammo/GeneralAI.php @@ -3134,7 +3134,7 @@ class GeneralAI $rawCity = $db->queryFirstRow('SELECT * FROM city WHERE city = %i', $this->general->getCityID()); $this->general->setRawCity($rawCity); } - if (!in_array($this->general->getRawCity()['level'], [5, 6])) { + if (in_array($this->general->getRawCity()['level'], [5, 6])) { return null; } } -- 2.54.0