xiyou_sanguo
zhangjiannan 2025-12-25 18:09:54 +08:00
parent 723b02e76d
commit 139f4168c0
1 changed files with 5 additions and 1 deletions

View File

@ -241,7 +241,11 @@ function this.GetPropText(_treeLv, _type)
table.insert(list, value)
end
table.sort(list, function(a, b)
return a.floor < b.floor
if a.propId > 999 or b.propId > 999 then
return a.propId > b.propId
else
return a.floor < b.floor
end
end)
return list, isMax
end