refac,wip: GeneralQueryMode 분리
- GeneralQueryMode - General 생성용 - GeneralLiteQueryMode - GeneralLite 생성용 - 이를 통해 확실한 에러 메시지를 내줄 것으로..
This commit is contained in:
+1
-1
@@ -569,7 +569,7 @@ if ($str3) {
|
||||
[$prizeColumn->value, $gameColumn->value, $winColumn->value, $drawColumn->value, $loseColumn->value, 'leadership', 'strength', 'intel', 'no', 'npc', 'name'],
|
||||
GeneralQueryMode::Core
|
||||
);
|
||||
usort($tournamentRankerList, function (General $lhs, General $rhs) use ($gameColumn, $winColumn, $drawColumn, $loseColumn) {
|
||||
usort($tournamentRankerList, function (GeneralLite $lhs, GeneralLite $rhs) use ($gameColumn, $winColumn, $drawColumn, $loseColumn) {
|
||||
$result = - ($lhs->getRankVar($gameColumn) <=> $rhs->getRankVar($gameColumn));
|
||||
if ($result !== 0) return $result;
|
||||
$result = - (
|
||||
|
||||
Reference in New Issue
Block a user