Added character fragments

To address the issue where RspLogin was becoming too large to allow logins, I changed the system to send a portion of the information via NtfSyncPlayer.
This commit is contained in:
Kei-Luna
2026-04-27 08:54:32 +09:00
parent b88e27e66e
commit 22029d195a
6 changed files with 37 additions and 4 deletions

View File

@@ -28,6 +28,7 @@ public class SuppliesExcel : ExcelResource
public override void Loaded()
{
GameData.SuppliesData[GetId()] = this;
GameData.AllSuppliesData.Add(this);
}
private static int ReadInt(JToken? token)

View File

@@ -8,6 +8,7 @@ public static class GameData
public static Dictionary<uint, WeaponExcel> WeaponData { get; private set; } = [];
public static Dictionary<uint, CardSkinExcel> CardSkinData { get; private set; } = [];
public static Dictionary<uint, SuppliesExcel> SuppliesData { get; private set; } = [];
public static List<SuppliesExcel> AllSuppliesData { get; private set; } = [];
public static Dictionary<int, UpgradeExpExcel> UpgradeExpData { get; private set; } = [];
public static Dictionary<int, BreakLevelLimitExcel> BreakLevelLimitData { get; private set; } = [];
public static Dictionary<int, RecycleExcel> RecycleData { get; private set; } = [];