fix(Scripts/TheEye): make legendary TK dagger have 100% proc chance (#18482)

initial
This commit is contained in:
Dan
2024-03-04 10:44:35 +01:00
committed by GitHub
parent 48873da974
commit 1c8644b3bc

View File

@@ -4644,6 +4644,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
});
// Magic Disruption (KT dagger)
ApplySpellFix({ 36478 }, [](SpellInfo* spellInfo)
{
spellInfo->ProcChance = 100;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];