From c52addbfc5d656819d540794b325a9b4d85f3840 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期三, 26 十一月 2025 11:31:14 +0800
Subject: [PATCH] 262 幻境阁系统-客户端 性能优化,在不需要排序列表的时候就不排序
---
Main/System/PhantasmPavilion/PhantasmPavilionChatBoxCell.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Main/System/PhantasmPavilion/PhantasmPavilionChatBoxCell.cs b/Main/System/PhantasmPavilion/PhantasmPavilionChatBoxCell.cs
index 1efa1b1..849b4fe 100644
--- a/Main/System/PhantasmPavilion/PhantasmPavilionChatBoxCell.cs
+++ b/Main/System/PhantasmPavilion/PhantasmPavilionChatBoxCell.cs
@@ -9,7 +9,7 @@
public void Display(int rowIndex)
{
- List<int> showItemList = manager.ShowItemList(type);
+ List<int> showItemList = manager.ShowItemList(type, isSort: true);
if (showItemList.IsNullOrEmpty() || !manager.TryGetRowCountMax(type, out int rowCountMax))
return;
for (int i = 0; i < items.Count; i++)
--
Gitblit v1.8.0