aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSnapperRy <snapperryen@gmail.com>2016-09-24 04:04:34 +0200
committerjoschiwald <joschiwald.trinity@gmail.com>2017-03-03 22:31:28 +0100
commitdf3e8cab1256d74125bd2b32cb710e2681b5416d (patch)
tree4a8e12378f942c5b16b4eb69075f7838391190ee /src
parent3897de67a4c4264a2a9e86802fb50d37aac60f3c (diff)
Script/Quest: improvements for Let Them Eat Crow. (#17948)
(cherry picked from commit 275a53b34db20c576d119b6ad567d203996b895b) Rename 9999_99_99_99_world.sql to 2016_09_24_06_world.sql (cherry picked from commit 7a1f41077ff0d28dd5d4968a39496c5067e5cee7)
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Spells/SpellMgr.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp
index 12f7524feee..858665453fa 100644
--- a/src/server/game/Spells/SpellMgr.cpp
+++ b/src/server/game/Spells/SpellMgr.cpp
@@ -3193,6 +3193,9 @@ void SpellMgr::LoadSpellInfoCorrections()
case 29726: // Test Ribbon Pole Channel
spellInfo->InterruptFlags &= ~AURA_INTERRUPT_FLAG_CAST;
break;
+ case 42767: // Sic'em
+ const_cast<SpellEffectInfo*>(spellInfo->GetEffect(EFFECT_0))->TargetA = SpellImplicitTargetInfo(TARGET_UNIT_NEARBY_ENTRY);
+ break;
// VIOLET HOLD SPELLS
//
case 54258: // Water Globule (Ichoron)
@@ -3495,6 +3498,8 @@ void SpellMgr::LoadSpellInfoCorrections()
properties->Type = SUMMON_TYPE_TOTEM;
if (SummonPropertiesEntry* properties = const_cast<SummonPropertiesEntry*>(sSummonPropertiesStore.LookupEntry(647))) // 52893
properties->Type = SUMMON_TYPE_TOTEM;
+ if (SummonPropertiesEntry* properties = const_cast<SummonPropertiesEntry*>(sSummonPropertiesStore.LookupEntry(628))) // Hungry Plaguehound
+ properties->Category = SUMMON_CATEGORY_PET;
TC_LOG_INFO("server.loading", ">> Loaded SpellInfo corrections in %u ms", GetMSTimeDiffToNow(oldMSTime));
}