v0.8 업데이트 #116

Closed
Hide_D wants to merge 209 commits from custom_map into devel
Showing only changes of commit 33c7dc29da - Show all commits
+2 -2
View File
@@ -127,12 +127,12 @@ foreach($types as $idx=>[$typeName, $typeValue, $typeFunc]){
usort($typeGenerals, function($lhs, $rhs){
//내림차순
return -($lhs['value'] - $rhs['value']);
return $rhs['value'] - $lhs['value'];
});
echo $templates->render('hallOfFrame', [
'typeName'=>$typeName,
'generals'=>array_slice($typeGenerals, 0, 10, true)
'generals'=>array_slice($typeGenerals, 0, 10)
]);
}
?>