Core/Spells: fixed learning Disenchanting

This commit is contained in:
Ovahlord
2018-07-04 16:26:55 +02:00
parent 3318324237
commit d66547d809

View File

@@ -4633,6 +4633,13 @@ void SpellMgr::LoadSpellInfoCorrections()
// ENDOF GILNEAS SPELLS
// Disenchant
ApplySpellFix({ 13262 }, [](SpellInfo* spellInfo)
{
spellInfo->BaseLevel = 0;
spellInfo->SpellLevel = 0;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];