diff options
author | Carbenium <carbenium@outlook.com> | 2015-06-11 01:03:41 +0200 |
---|---|---|
committer | Carbenium <carbenium@outlook.com> | 2015-06-11 01:03:41 +0200 |
commit | 1d20122903a9812bea6e3e12f285de8fe073a9d3 (patch) | |
tree | 12eda7a2e6119ca37fa9d9ebaca96e0c89762e1e | |
parent | 5249be851ff7a7426041545a1f465aba04b8f118 (diff) |
Merge pull request #14741 from Rushor/Force
Game/Spell: Spellmgr - Force Cast - Fix Typo
(cherry picked from commit b15d32992f5991d19183977f1fefd8e77924809f)
Conflicts:
sql/updates/world/2015_05_22_00_world.sql
src/server/game/Spells/SpellMgr.cpp
-rw-r--r-- | sql/updates/world/2015_06_11_00_world_2015_05_22_00.sql | 2 | ||||
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sql/updates/world/2015_06_11_00_world_2015_05_22_00.sql b/sql/updates/world/2015_06_11_00_world_2015_05_22_00.sql new file mode 100644 index 00000000000..2949d0eca4a --- /dev/null +++ b/sql/updates/world/2015_06_11_00_world_2015_05_22_00.sql @@ -0,0 +1,2 @@ +-- +DELETE FROM `spell_target_position` WHERE `id`=63171; diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 70b820aed96..365b58724eb 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3031,7 +3031,7 @@ void SpellMgr::LoadSpellInfoCorrections() switch (spellInfo->Id) { case 63026: // Force Cast (HACK: Target shouldn't be changed) - case 63171: // Force Cast (HACK: Target shouldn't be changed; summon position should be untied from spell destination) + case 63137: // Force Cast (HACK: Target shouldn't be changed; summon position should be untied from spell destination) const_cast<SpellEffectInfo*>(spellInfo->GetEffect(EFFECT_0))->TargetA = SpellImplicitTargetInfo(TARGET_DEST_DB); break; case 42436: // Drink! (Brewfest) |