[11691] Typo in select proper spell difficulty function

This commit is contained in:
PSZ 2011-06-28 12:21:23 +04:00 committed by VladimirMangos
parent 6a142fcd55
commit bb9157c6fc
2 changed files with 2 additions and 2 deletions

View file

@ -4517,7 +4517,7 @@ SpellEntry const* GetSpellEntryByDifficulty(uint32 id, Difficulty difficulty, bo
for (Difficulty diff = difficulty; diff >= REGULAR_DIFFICULTY; diff = GetPrevDifficulty(diff, isRaid))
{
if (spellDiff->spellId[diff])
return sSpellStore.LookupEntry(spellDiff->spellId[difficulty]);
return sSpellStore.LookupEntry(spellDiff->spellId[diff]);
}
return NULL;