game: 턴 시간과 도시 지정을 같이 가능하도록 변경

This commit is contained in:
2024-02-24 12:05:49 +00:00
parent bcf5b5cb7d
commit cacf0981ce
2 changed files with 0 additions and 23 deletions
-4
View File
@@ -144,10 +144,6 @@ class Join extends \sammo\BaseAPI
$inheritCity = $this->args['inheritCity'] ?? null;
$inheritBonusStat = $this->args['inheritBonusStat'] ?? null;
if ($inheritTurntimeZone !== null && $inheritCity !== null) {
return '턴과 도시를 동시에 지정할 수 없습니다.';
}
$rootDB = RootDB::db();
//회원 테이블에서 정보확인
$member = $rootDB->queryFirstRow('SELECT `no`, id, picture, grade, `name`, imgsvr, `penalty` FROM member WHERE no=%i', $userID);