Skip to content

Commit 1f6373c

Browse files
committed
fix cata offer
1 parent b130e1f commit 1f6373c

File tree

5 files changed

+156
-73
lines changed

5 files changed

+156
-73
lines changed

Communication/Packets/Incoming/Catalog/GetCatalogOfferEvent.cs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using Akiled.Communication.Packets.Outgoing.Structure;
22
using Akiled.HabboHotel.Catalog;
33
using Akiled.HabboHotel.GameClients;
4+
using System;
45

56
namespace Akiled.Communication.Packets.Incoming.Structure
67
{
@@ -26,6 +27,7 @@ public void Parse(GameClient Session, ClientPacket Packet)
2627
return;
2728

2829
Item = (CatalogItem)Page.ItemOffers[OfferId];
30+
2931
if (Item != null)
3032
Session.SendMessage(new CatalogOfferComposer(Item));
3133
}

0 commit comments

Comments
 (0)