xiyou_sanguo
parent
723b02e76d
commit
139f4168c0
|
|
@ -241,7 +241,11 @@ function this.GetPropText(_treeLv, _type)
|
||||||
table.insert(list, value)
|
table.insert(list, value)
|
||||||
end
|
end
|
||||||
table.sort(list, function(a, b)
|
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)
|
end)
|
||||||
return list, isMax
|
return list, isMax
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue