Home screen, some places unblocked slightly (shop, friends)

This commit is contained in:
Kyle Belanger
2024-02-21 00:42:34 -05:00
parent 920a08a4b8
commit 7d79f3c007
8 changed files with 72 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
using BLHX.Server.Common.Proto;
using BLHX.Server.Common.Proto.p50;
namespace BLHX.Server.Game.Handlers
{
internal static class P50
{
[PacketHandler(Command.Cs50014)]
static void SearchFriendCommandHandler(Connection connection, Packet packet)
{
connection.Send(new Sc50015());
}
[PacketHandler(Command.Cs50016)]
static void GetBlacklistHandler(Connection connection, Packet packet)
{
connection.Send(new Sc50017());
}
}
}