fix: 공백지에 건국이 완료된 경우 장수 생성이 되지 않는 버그 수정

This commit is contained in:
2022-05-18 01:28:00 +09:00
parent e5507e1e61
commit b710a26b3e
+1 -2
View File
@@ -221,8 +221,7 @@ class Join extends \sammo\BaseAPI
// 공백지에서만 태어나게
$cities = $db->queryFirstColumn('SELECT city FROM city where `level`>=5 and `level`<=6 and nation=0');
if (!$cities) {
$db->queryFirstColumn('SELECT city FROM city where `level`>=5 and `level`<=6');
$cities = $db->queryFirstField("SELECT city from city where `level`>=5 and `level`<=6");
$cities = $db->queryFirstColumn('SELECT city FROM city where `level`>=5 and `level`<=6');
}
$city = $rng->choice($cities);
}