From ed90e187912a09b69d5cd55da207477f821edf32 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 08 一月 2026 21:22:34 +0800
Subject: [PATCH] 266 【内政】古宝系统 -写死配置

---
 Main/System/HappyXB/HappyXBModel.cs |   17 ++++++++++++++---
 1 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/Main/System/HappyXB/HappyXBModel.cs b/Main/System/HappyXB/HappyXBModel.cs
index eeeb461..e85dcad 100644
--- a/Main/System/HappyXB/HappyXBModel.cs
+++ b/Main/System/HappyXB/HappyXBModel.cs
@@ -504,6 +504,20 @@
     public int GetNextXBCountForBigAward(int type, out List<int> qualityList)
     {
         qualityList = new List<int>();
+
+        //鏃犻厤缃啓姝�
+        if (type == (int)HappXBTitle.Gubao)
+        {
+            qualityList.Add(3);
+            qualityList.Add(4);
+        }
+        else if (type == (int)HappXBTitle.HeroCallAdvanced)
+        {
+            qualityList.Add(4);
+            qualityList.Add(5);
+        }
+
+
         XBTypeInfo typeInfo = GetXBInfoByType(type);
         if (typeInfo == null)
         {
@@ -518,9 +532,6 @@
         {
             if (typeInfo.luckValue < luckList[i])
             {
-                //鎶婁簩缁存暟缁勯噷鐨勬墍鏈夌浜屼釜鍏冪礌缁勬垚鏂板垪琛�
-                qualityList = xbConfig.LuckyItemRateInfo[luckList[i]].Select(x => x[1]).ToList();
-                qualityList.Sort();
                 return luckList[i] - typeInfo.luckValue;
             }
         }

--
Gitblit v1.8.0