Skip to content

Commit

Permalink
Update Codestyle 2
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxtorCoder committed Jun 5, 2022
1 parent c5adda5 commit 6bd29ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HermesProxy/World/Server/PacketHandlers/ItemHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ void HandleCancelTempEnchantment(CancelTempEnchantment cancel)
void HandleWrapItem(WrapItem item)
{
WorldPacket packet = new WorldPacket(Opcode.CMSG_WRAP_ITEM);
packet.WriteUInt8(item.gift_bag);
packet.WriteUInt8(item.gift_slot);
packet.WriteUInt8(item.item_bag);
packet.WriteUInt8(item.item_slot);
packet.WriteUInt8(item.GiftBag);
packet.WriteUInt8(item.GiftSlot);
packet.WriteUInt8(item.ItemBag);
packet.WriteUInt8(item.ItemSlot);
SendPacketToServer(packet);
}
}
Expand Down

0 comments on commit 6bd29ee

Please sign in to comment.