mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 19:05:42 +00:00
fix(Core/DB/Quest): Let Them Eat Crow (#1680)
This commit is contained in:
@@ -3374,6 +3374,9 @@ void SpellMgr::LoadDbcDataCorrections()
|
||||
case 29809: // Desecration Arm - 36 instead of 37 - typo? :/
|
||||
spellInfo->EffectRadiusIndex[0] = 37;
|
||||
break;
|
||||
case 42767: // Sic'em
|
||||
spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_NEARBY_ENTRY;
|
||||
break;
|
||||
// Master Shapeshifter: missing stance data for forms other than bear - bear version has correct data
|
||||
// To prevent aura staying on target after talent unlearned
|
||||
case 48420:
|
||||
@@ -6323,7 +6326,11 @@ void SpellMgr::LoadDbcDataCorrections()
|
||||
properties->Type = SUMMON_TYPE_TOTEM;
|
||||
properties = const_cast<SummonPropertiesEntry*>(sSummonPropertiesStore.LookupEntry(647)); // 52893
|
||||
properties->Type = SUMMON_TYPE_TOTEM;
|
||||
|
||||
if ((properties = const_cast<SummonPropertiesEntry*>(sSummonPropertiesStore.LookupEntry(628)))) // Hungry Plaguehound
|
||||
{
|
||||
properties->Category = SUMMON_CATEGORY_PET;
|
||||
properties->Type = SUMMON_TYPE_PET;
|
||||
}
|
||||
|
||||
// Correct Pet Size
|
||||
CreatureDisplayInfoEntry* displayEntry = const_cast<CreatureDisplayInfoEntry*>(sCreatureDisplayInfoStore.LookupEntry(17028)); // Kurken
|
||||
|
||||
Reference in New Issue
Block a user