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_EnterLevel")]
@@ -5,7 +7,7 @@ public class BossPvpLogic_EnterLevel : ICallGSHandler
{
public async Task Handle(Connection connection, string param, ushort seqNo)
{
var response = BossPvpShared.HandleEnterLevel(param);
var response = BossPvpService.HandleEnterLevel(param);
await CallGSRouter.SendScript(connection, "BossPvpLogic_EnterLevel", System.Text.Json.JsonSerializer.Serialize(response));
}
}