Call CalcBonuses for RoF+ augments

This commit is contained in:
Michael Cook (mackal) 2014-10-05 16:13:13 -04:00
parent 5be8e710a9
commit 1261c228a3

View File

@ -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!");
}
}