mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-05 02:34:00 +00:00
refactor manager & add giveall command
- giveall only weapon for now - move all item into SyncPlayer to prevent RspLogin too large
This commit is contained in:
19
GameServer/Server/Packet/Send/Lineup/PacketNtfSyncLineup.cs
Normal file
19
GameServer/Server/Packet/Send/Lineup/PacketNtfSyncLineup.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using MikuSB.Database.Lineup;
|
||||
using MikuSB.Proto;
|
||||
using MikuSB.TcpSharp;
|
||||
|
||||
namespace MikuSB.GameServer.Server.Packet.Send.Lineup;
|
||||
|
||||
public class PacketNtfSyncLineup : BasePacket
|
||||
{
|
||||
|
||||
public PacketNtfSyncLineup(LineupDataInfo lineup) : base(CmdIds.NtfSyncLineup)
|
||||
{
|
||||
var proto = new NtfSyncLineup
|
||||
{
|
||||
Lineup = lineup.ToProto()
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user