From 3b64befcd8b2ab5abef1a33c5c8f73a6b245aff0 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期四, 16 十月 2025 19:59:09 +0800
Subject: [PATCH] 136 子 【挑战】战锤秘境 / 【挑战】战锤秘境-客户端 修改战场名
---
Main/System/MainLevel/MainLevelDropCell.cs | 13 ++++++++-----
1 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/Main/System/MainLevel/MainLevelDropCell.cs b/Main/System/MainLevel/MainLevelDropCell.cs
index 253f53e..3a4f34e 100644
--- a/Main/System/MainLevel/MainLevelDropCell.cs
+++ b/Main/System/MainLevel/MainLevelDropCell.cs
@@ -39,12 +39,15 @@
{
lockImg.SetActive(false);
int maxValue = 0;
- for (int i = 0; i < config.DailyBootyUpperList.Length; i++)
- {
- if (config.DailyBootyUpperList[i][0] == itemID)
+ if (config.DailyBootyUpperList != null)
+ {
+ for (int i = 0; i < config.DailyBootyUpperList.Length; i++)
{
- maxValue = config.DailyBootyUpperList[i][1];
- break;
+ if (config.DailyBootyUpperList[i][0] == itemID)
+ {
+ maxValue = config.DailyBootyUpperList[i][1];
+ break;
+ }
}
}
int curValue = 0;
--
Gitblit v1.8.0