From 3c442a6b71c1d2e42a730d1cbfde04a55984e025 Mon Sep 17 00:00:00 2001 From: kadeshar Date: Tue, 2 Sep 2025 19:24:55 +0200 Subject: [PATCH] - Excluded additional Legendary Arcane Amalgamation from obtainable for bot enchantments (#1600) --- src/factory/PlayerbotFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/factory/PlayerbotFactory.cpp b/src/factory/PlayerbotFactory.cpp index 23d956cd..6081443d 100644 --- a/src/factory/PlayerbotFactory.cpp +++ b/src/factory/PlayerbotFactory.cpp @@ -123,7 +123,7 @@ void PlayerbotFactory::Init() if (id == 47181 || id == 50358 || id == 47242 || id == 52639 || id == 47147 || id == 7218) // Test Enchant continue; - if (id == 15463) // Legendary Arcane Amalgamation + if (id == 15463 || id == 15490) // Legendary Arcane Amalgamation continue; SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(id);