From f7e4fba58430abeaf0c1051d382b1761c02b2658 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sun, 22 Jan 2023 12:57:00 -0500 Subject: [PATCH] [Bug Fix] Fix bots equipping augments. (#2772) # Notes - Bots didn't check if the item was an augment before equipping, this stops them from equipping them. --- zone/bot.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zone/bot.cpp b/zone/bot.cpp index e7684358c..fe8073e9d 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -4859,6 +4859,10 @@ void Bot::PerformTradeWithClient(int16 begin_slot_id, int16 end_slot_id, Client* continue; } + if (trade_instance->GetItem()->ItemType == EQ::item::ItemTypeAugmentation) { + continue; + } + //if (stage_loop == stageStackable) { // // TODO: implement // continue;