更新注释

This commit is contained in:
Longfeng Qin 2024-11-25 09:25:21 +08:00
parent 89465c789c
commit b4aa3532b1
2 changed files with 2 additions and 4 deletions

View File

@ -11,9 +11,6 @@ namespace PSO2SERVER.Packets.Handlers
{
public struct CharacterSelectedPacket
{
/// <summary>
/// Selected character ID.
/// </summary>
public uint CharId;
public uint Unk1;
public uint Unk2;
@ -33,7 +30,7 @@ namespace PSO2SERVER.Packets.Handlers
Logger.Write("id {0}", charId);
if (context.Character == null) // On character create, this is already set.
if (context.Character == null)
{
using (var db = new ServerEf())
{

View File

@ -10,6 +10,7 @@ namespace PSO2SERVER.Packets.Handlers
[PacketHandlerAttr(0x11, 0x2B)]
public class LogOutRequest : PacketHandler
{
// 只是返回一个断开指示,没有任何数据包结构
#region implemented abstract members of PacketHandler
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)