26 lines
659 B
C#
26 lines
659 B
C#
using PSO2SERVER.Packets.PSOPackets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PSO2SERVER.Packets.Handlers
|
|
{
|
|
[PacketHandlerAttr(0x03, 0x10)]
|
|
public class DoItMaybe : PacketHandler
|
|
{
|
|
#region implemented abstract members of PacketHandler
|
|
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
{
|
|
if (context.User == null || context.Character == null)
|
|
return;
|
|
|
|
context.SendPacket(new LoadingScreenRemovePacket());
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|