From abefd1cccea854aba2f2c133446bc95ed512f875 Mon Sep 17 00:00:00 2001 From: nytmyr <53322305+nytmyr@users.noreply.github.com> Date: Tue, 12 Nov 2024 22:19:16 -0600 Subject: [PATCH] Add loregroup 0 bypass for lore conflicts for bots like clients --- zone/bot.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zone/bot.cpp b/zone/bot.cpp index df4ec5148..139bcbbd9 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -7157,8 +7157,9 @@ void Bot::CalcBotStats(bool showtext) { } bool Bot::CheckLoreConflict(const EQ::ItemData* item) { - if (!item || !(item->LoreFlag)) + if (!item || !(item->LoreFlag) || (item->LoreGroup == 0)) { return false; + } if (item->LoreGroup == -1) // Standard lore items; look everywhere except the shared bank, return the result return (m_inv.HasItem(item->ID, 0, invWhereWorn) != INVALID_INDEX);