Skip to content

Commit ad0a0fd

Browse files
committed
fix: 修复不同客户端团队气劲列表排序次序问题
1 parent 0153cc8 commit ad0a0fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MY_TeamMon/src/MY_TeamMon_PartyBuffList.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ function D.OnTableInsert(dwID, dwBuffID, nLevel, nIcon)
315315
local item = D.handle:Lookup(i)
316316
if item and item:IsValid() then
317317
local nItemSortLFC = item.nSortLFC or 0
318-
if nItemSortLFC > nSortLFC then
318+
if nItemSortLFC < nSortLFC then
319319
nInsertIndex = i + 1
320320
break
321321
elseif nItemSortLFC == nSortLFC then

0 commit comments

Comments
 (0)