small fix

This commit is contained in:
Kei-Luna
2026-05-19 17:46:53 +09:00
parent 125dadd224
commit a585232045
9 changed files with 27 additions and 15 deletions

View File

@@ -1,3 +1,5 @@
using MikuSB.GameServer.Game.BossPvp;
namespace MikuSB.GameServer.Server.CallGS.Handlers.BossPvp;
[CallGSApi("BossPvpLogic_LevelSettlement")]
@@ -6,7 +8,7 @@ public class BossPvpLogic_LevelSettlement : ICallGSHandler
public async Task Handle(Connection connection, string param, ushort seqNo)
{
var node = System.Text.Json.Nodes.JsonNode.Parse(param);
var (response, sync) = BossPvpShared.HandleSettlement(connection.Player!, node);
var (response, sync) = BossPvpService.HandleSettlement(connection.Player!, node);
await CallGSRouter.SendScript(connection, "BossPvpLogic_LevelSettlement", response.ToJsonString(), sync);
}
}