Scripts/Spells: Fix Odyn's Fury target cap & Titanic Rage talent (#31043)

This commit is contained in:
Jeremy
2025-06-09 21:24:47 +02:00
committed by GitHub
parent 10e9386ab9
commit 0ba78eb4c4
3 changed files with 51 additions and 0 deletions

View File

@@ -5368,6 +5368,12 @@ void SpellMgr::LoadSpellInfoTargetCaps()
spellInfo->_LoadSqrtTargetLimit(5, 0, {}, EFFECT_4, {}, {});
});
// Odyn's Fury
ApplySpellFix({ 385060, 385061, 385062 }, [](SpellInfo* spellInfo)
{
spellInfo->_LoadSqrtTargetLimit(5, 0, 385059, EFFECT_5, {}, {});
});
TC_LOG_INFO("server.loading", ">> Loaded SpellInfo target caps in {} ms", GetMSTimeDiffToNow(oldMSTime));
}