mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-01 03:02:26 +00:00
[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.
This commit is contained in:
parent
01a0f906e1
commit
f7e4fba584
@ -4859,6 +4859,10 @@ void Bot::PerformTradeWithClient(int16 begin_slot_id, int16 end_slot_id, Client*
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (trade_instance->GetItem()->ItemType == EQ::item::ItemTypeAugmentation) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
//if (stage_loop == stageStackable) {
|
//if (stage_loop == stageStackable) {
|
||||||
// // TODO: implement
|
// // TODO: implement
|
||||||
// continue;
|
// continue;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user