DreamCard_LevelSettlement DreamCard_UpdateData

This commit is contained in:
Kei-Luna
2026-05-25 13:45:14 +09:00
parent 60101e75e2
commit 6063a3a0cd
3 changed files with 348 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ using System.Text.Json.Nodes;
using System.Text.Json.Serialization;
using MikuSB.GameServer.Game.BossPvp;
using MikuSB.Proto;
using MikuSB.GameServer.Server.CallGS.Handlers.DreamCard;
using MikuSB.GameServer.Server.CallGS.Handlers.Tower;
using MikuSB.GameServer.Server.CallGS.Handlers.VirCapture;
@@ -80,6 +81,13 @@ public class Chapter_DealLevelSettlement : ICallGSHandler
return response;
}
if (string.Equals(sCmd, "DreamCard_LevelSettlement", StringComparison.Ordinal))
{
var (response, sync) = DreamCard_LevelSettlement.HandleSettlement(connection.Player!, tbParam);
extraSync = sync;
return response;
}
return tbParam?.DeepClone() ?? new JsonObject();
}