少年修仙传客户端代码仓库
hch
2025-02-18 628543bd9d485937b9ab4ce8c4775fc0492f6cee
0312 定制幻境阁相关问题
1个文件已修改
16 ■■■■■ 已修改文件
System/PhantasmPavilion/PhantasmPavilionModel.cs 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/PhantasmPavilion/PhantasmPavilionModel.cs
@@ -371,7 +371,23 @@
                return false;
            }
            if (tempInfoDict == null || !tempInfoDict.TryGetValue(id, out info))
            {
                // 定制的默认激活0星
                if (IsCustom(id, out int customPlayerID))
                {
                    if (customPlayerID == PlayerDatas.Instance.baseData.PlayerID)
                    {
                        info = new PhantasmPavilionInfo()
                        {
                            ID = id,
                            Star = 0,
                            State = true
                        };
                        return true;
                    }
                }
                return false;
            }
            return true;
        }