Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions PacketToSQL/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Shop ReadShop(MaplePacket packet)
packet.ReadInt();
int id = packet.ReadInt();
long nextRestock = packet.ReadLong();
nextRestock = 1666483200; // change restock of all shops to be at 12 AM GMT
packet.ReadInt();
int itemCount = packet.ReadShort();
int category = packet.ReadInt();
Expand Down Expand Up @@ -131,6 +132,7 @@ Shop ReadShop(MaplePacket packet)
{
restockCurrencyType = packet.ReadByte();
excessRestockCurrencyType = packet.ReadByte();
packet.ReadInt();
restockCost = packet.ReadInt();
enableRestockCostMultiplier = packet.ReadBool();
totalRestockCount = packet.ReadInt();
Expand Down