mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-05 20:13:59 +00:00
small fix
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
using MikuSB.GameServer.Game.BossPvp;
|
||||
|
||||
namespace MikuSB.GameServer.Server.CallGS.Handlers.BossPvp;
|
||||
|
||||
[CallGSApi("BossPvpLogic_GetReward")]
|
||||
@@ -5,7 +7,7 @@ public class BossPvpLogic_GetReward : ICallGSHandler
|
||||
{
|
||||
public async Task Handle(Connection connection, string param, ushort seqNo)
|
||||
{
|
||||
var response = BossPvpShared.HandleGetReward(param);
|
||||
var response = BossPvpService.HandleGetReward(param);
|
||||
await CallGSRouter.SendScript(connection, "BossPvpLogic_GetReward", System.Text.Json.JsonSerializer.Serialize(response));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user