server-master/srcs/_plugins/WingsEmu.Plugins.PacketHandling/Game/Useless/FStashEndPacketHandler.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
467 B
C#

using System.Threading.Tasks;
using WingsEmu.Game.Families.Event;
using WingsEmu.Game.Networking;
using WingsEmu.Packets.ClientPackets;
namespace WingsEmu.Plugins.PacketHandling.Game.Useless;
public class FStashEndPacketHandler : GenericGamePacketHandlerBase<FStashEndPacket>
{
protected override async Task HandlePacketAsync(IClientSession session, FStashEndPacket packet)
{
await session.EmitEventAsync(new FamilyWarehouseCloseEvent());
}
}