【白金装备】装备穿戴界面,四星白金装备比五星白金装备排序靠前,其他部位没问题

dev_chengFeng
ZhangBiao 2021-12-13 10:14:54 +08:00
parent 8ba26cd8b4
commit 3bc06e9b8e
1 changed files with 1 additions and 1 deletions

View File

@ -1155,7 +1155,7 @@ function this:SortEquipDatas(_equipDatas)
if a.isRedPointShow == b.isRedPointShow then
if a.itemConfig.Quantity == b.itemConfig.Quantity then
if equipConfig[a.id].Position == equipConfig[b.id].Position then
return a.id > b.id
return itemConfig[a.id].Sort > itemConfig[b.id].Sort
else
return equipConfig[a.id].Position < equipConfig[b.id].Position
end