mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
style: cleanup code
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
using EggLink.DanhengServer.Database.Friend;
|
||||
using EggLink.DanhengServer.Kcp;
|
||||
using EggLink.DanhengServer.Proto;
|
||||
using System.Linq;
|
||||
|
||||
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Challenge;
|
||||
|
||||
public class PacketGetChallengeGroupStatisticsScRsp : BasePacket
|
||||
{
|
||||
public PacketGetChallengeGroupStatisticsScRsp(uint groupId, ChallengeGroupStatisticsPb? data) : base(CmdIds.GetChallengeGroupStatisticsScRsp)
|
||||
public PacketGetChallengeGroupStatisticsScRsp(uint groupId, ChallengeGroupStatisticsPb? data) : base(
|
||||
CmdIds.GetChallengeGroupStatisticsScRsp)
|
||||
{
|
||||
var proto = new GetChallengeGroupStatisticsScRsp
|
||||
{
|
||||
@@ -15,22 +15,13 @@ public class PacketGetChallengeGroupStatisticsScRsp : BasePacket
|
||||
};
|
||||
|
||||
var maxMemory = data?.MemoryGroupStatistics?.Values.MaxBy(x => x.Level);
|
||||
if (maxMemory != null)
|
||||
{
|
||||
proto.MemoryGroup = maxMemory.ToProto();
|
||||
}
|
||||
if (maxMemory != null) proto.MemoryGroup = maxMemory.ToProto();
|
||||
|
||||
var maxStory = data?.StoryGroupStatistics?.Values.MaxBy(x => x.Level);
|
||||
if (maxStory != null)
|
||||
{
|
||||
proto.StoryGroup = maxStory.ToProto();
|
||||
}
|
||||
if (maxStory != null) proto.StoryGroup = maxStory.ToProto();
|
||||
|
||||
var maxBoss = data?.BossGroupStatistics?.Values.MaxBy(x => x.Level);
|
||||
if (maxBoss != null)
|
||||
{
|
||||
proto.BossGroup = maxBoss.ToProto();
|
||||
}
|
||||
if (maxBoss != null) proto.BossGroup = maxBoss.ToProto();
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user