mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 17:04:44 +01:00
update to game version g122.8.20c
This commit is contained in:
23
nksrv/LobbyServer/Msgs/User/GetProfileDecoration.cs
Normal file
23
nksrv/LobbyServer/Msgs/User/GetProfileDecoration.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using nksrv.Utils;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace nksrv.LobbyServer.Msgs.User
|
||||
{
|
||||
[PacketPath("/ProfileCard/DecorationLayout/Get")]
|
||||
public class GetProfileDecoration : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqProfileCardDecorationLayout>();
|
||||
|
||||
var r = new ResProfileCardDecorationLayout();
|
||||
r.Layout = new ProfileCardDecorationLayout();
|
||||
r.Layout.BackgroundId = 101002;
|
||||
WriteData(r);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user