From b710a26b3e6078a96f8371d54259cacb160a67ef Mon Sep 17 00:00:00 2001 From: Hide_D Date: Wed, 18 May 2022 01:28:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B3=B5=EB=B0=B1=EC=A7=80=EC=97=90=20?= =?UTF-8?q?=EA=B1=B4=EA=B5=AD=EC=9D=B4=20=EC=99=84=EB=A3=8C=EB=90=9C=20?= =?UTF-8?q?=EA=B2=BD=EC=9A=B0=20=EC=9E=A5=EC=88=98=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=EC=9D=B4=20=EB=90=98=EC=A7=80=20=EC=95=8A=EB=8A=94=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/API/General/Join.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hwe/sammo/API/General/Join.php b/hwe/sammo/API/General/Join.php index ea57433a..e0d3f795 100644 --- a/hwe/sammo/API/General/Join.php +++ b/hwe/sammo/API/General/Join.php @@ -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); }