少年修仙传客户端代码仓库
client_linchunjie
2018-12-20 ed55623220a86a7c4026ec0f0dea1ea5354a3398
5367 【前端】【1.4】聚魂功能开发
1个文件已修改
2 ■■■ 已修改文件
System/GatheringSoul/GatheringSoulModel.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/GatheringSoul/GatheringSoulModel.cs
@@ -1283,7 +1283,7 @@
                var page = Mathf.CeilToInt((float)resolveList.Count / 50);
                for (int i = 0; i < page; i++)
                {
                    ushort[] resolves = resolveList.Skip(page * 50).Take((i < page - 1) ? 50 : (list.Count - page * 50)).ToArray();
                    ushort[] resolves = resolveList.Skip(i * 50).Take((i < page - 1) ? 50 : (resolveList.Count - i * 50)).ToArray();
                    SendResolvePack(resolves, true);
                }
            }