fix: the relic panel in avatar page cannot open

This commit is contained in:
Somebody
2025-04-20 16:26:01 +08:00
committed by EggLink
parent 4af0bcb0d0
commit 113007072e
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using EggLink.DanhengServer.Kcp;
using EggLink.DanhengServer.Proto;
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Recommend;
public class PacketGetBigDataAllRecommendScRsp : BasePacket
{
public PacketGetBigDataAllRecommendScRsp(BigDataRecommendType type) : base(CmdIds.GetBigDataAllRecommendScRsp)
{
var proto = new GetBigDataAllRecommendScRsp
{
BigDataRecommendType = type
};
SetData(proto);
}
}