From bd29f1c5bb1655b089667d86f2926c2ce96d20e6 Mon Sep 17 00:00:00 2001 From: Aeadoin <109764533+Aeadoin@users.noreply.github.com> Date: Tue, 17 Jan 2023 14:34:28 -0500 Subject: [PATCH] [Bug Fix] Handle_OP_AugmentItem could cause Zone crash (#2750) --- zone/client_packet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 263dfbe1a..a5d87c4cf 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -3104,12 +3104,12 @@ void Client::Handle_OP_AugmentItem(const EQApplicationPacket *app) "{} {} {} {} {}", tobe_auged->GetID(), item_slot, - aug->GetID(), + old_aug->GetID(), in_augment->augment_index, false ); - args.push_back(aug); + args.push_back(old_aug); parse->EventPlayer(EVENT_AUGMENT_REMOVE_CLIENT, this, export_string, 0, &args); }