From 23aa6807ef4966b4e351306e5e7f11da5c1c6f85 Mon Sep 17 00:00:00 2001 From: SuntrustDev <19979417+SunTrustDev@users.noreply.github.com> Date: Sun, 8 Feb 2026 22:24:15 +0100 Subject: [PATCH] Fix refine not showing item information --- src/UserInterface/Packet.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/UserInterface/Packet.h b/src/UserInterface/Packet.h index 5da251f..b651f16 100644 --- a/src/UserInterface/Packet.h +++ b/src/UserInterface/Packet.h @@ -2239,7 +2239,7 @@ typedef struct SPacketGCChangeSkillGroup struct TMaterial { uint32_t vnum; - uint32_t count; + int32_t count; }; typedef struct SRefineTable @@ -2254,10 +2254,11 @@ typedef struct SRefineTable typedef struct SPacketGCRefineInformation { - uint16_t header; - uint16_t length; - uint8_t pos; - TRefineTable refine_table; + uint16_t header; + uint16_t length; + uint8_t type; + uint8_t pos; + TRefineTable refine_table; } TPacketGCRefineInformation; typedef struct SPacketGCRefineInformationNew