From 1261c228a32e1fe888da4f3c9d8885039b5dd31f Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sun, 5 Oct 2014 16:13:13 -0400 Subject: [PATCH] Call CalcBonuses for RoF+ augments --- zone/client_packet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 2ef62c3d3..7edd9202b 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -3111,6 +3111,7 @@ void Client::Handle_OP_AugmentItem(const EQApplicationPacket *app) DeleteItemInInventory(MainCursor, 0, true); if (PutItemInInventory(slot_id, *itemOneToPush, true)) { + CalcBonuses(); //Message(13, "Sucessfully added an augment to your item!"); return; } @@ -3185,6 +3186,7 @@ void Client::Handle_OP_AugmentItem(const EQApplicationPacket *app) if (PutItemInInventory(MainCursor, *itemTwoToPush, true)) { + CalcBonuses(); //Message(15, "Successfully removed an augmentation!"); } }