From 6296ed6d4138e6ffb0ad55c31a88729c5f2e9f84 Mon Sep 17 00:00:00 2001 From: Fryguy Date: Fri, 9 Aug 2024 22:27:04 -0400 Subject: [PATCH] [Bug Fix] Attune Augments when Equipped (#4446) --- zone/client_packet.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index e12d4e9d4..57505ad45 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -3285,6 +3285,10 @@ void Client::Handle_OP_AugmentItem(const EQApplicationPacket *app) } } + if (new_aug->GetItem()->Attuneable) { + new_aug->SetAttuned(true); + } + tobe_auged->PutAugment(in_augment->augment_index, *new_aug); tobe_auged->UpdateOrnamentationInfo();