From bddf4df7cbb292011a974b705d6f6d94c0ac6cc1 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期二, 09 十二月 2025 11:44:17 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts
---
Main/Config/Configs/FuncOpenLVConfig.cs | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/Main/Config/Configs/FuncOpenLVConfig.cs b/Main/Config/Configs/FuncOpenLVConfig.cs
index 6c1ca9b..8e930b5 100644
--- a/Main/Config/Configs/FuncOpenLVConfig.cs
+++ b/Main/Config/Configs/FuncOpenLVConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: YYL
-// [ Date ]: Thursday, November 27, 2025
+// [ Date ]: 2025骞�12鏈�8鏃�
//--------------------------------------------------------
using System.Collections.Generic;
@@ -25,7 +25,8 @@
public string Name;
public string Desc;
public string Icon;
- public Dictionary<int, int[][]> Award;
+ public int PreviewIndex;
+ public int[][] AwardList;
public override int LoadKey(string _key)
{
@@ -55,7 +56,9 @@
Icon = tables[8];
- Award = ConfigParse.ParseIntArray2Dict(tables[9].Replace("(", "[").Replace(")", "]"));
+ int.TryParse(tables[9],out PreviewIndex);
+
+ AwardList = JsonMapper.ToObject<int[][]>(tables[10].Replace("(", "[").Replace(")", "]"));
}
catch (Exception exception)
{
--
Gitblit v1.8.0