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

@@ -1,9 +1,21 @@
using BLHX.Server.Common.Proto.p22;
using BLHX.Server.Common.Proto;
using BLHX.Server.Common.Proto.p22;
namespace BLHX.Server.Game.Handlers
{
internal static class P22
{
[PacketHandler(Command.Cs22101)]
static void GetShopStreetHandler(Connection connection, Packet packet)
{
connection.Send(new Sc22102()
{
Street = new()
{
Lv = 1
}
});
}
}
static class P22ConnectionNotifyExtensions