fix: 방랑군이 빈번하게 해산하는 문제 해결 시도

This commit was merged in pull request #264.
This commit is contained in:
류화영
2026-01-19 22:50:11 +09:00
parent d679a6fed8
commit cec7726731
+1 -1
View File
@@ -3134,7 +3134,7 @@ class GeneralAI
$rawCity = $db->queryFirstRow('SELECT * FROM city WHERE city = %i', $this->general->getCityID()); $rawCity = $db->queryFirstRow('SELECT * FROM city WHERE city = %i', $this->general->getCityID());
$this->general->setRawCity($rawCity); $this->general->setRawCity($rawCity);
} }
if (!in_array($this->general->getRawCity()['level'], [5, 6])) { if (in_array($this->general->getRawCity()['level'], [5, 6])) {
return null; return null;
} }
} }