VirCaptureTower_EnterLevel

This commit is contained in:
Kei-Luna
2026-05-25 13:07:34 +09:00
parent bc69a072e1
commit 6bc9090c89
5 changed files with 226 additions and 0 deletions

View File

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