Compare commits

...
1 Commits
Author SHA1 Message Date
류화영 cec7726731 fix: 방랑군이 빈번하게 해산하는 문제 해결 시도 2026-01-19 22:50:11 +09:00
+1 -1
View File
@@ -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;
}
}