diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index db23848063..a986cc0598 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19220,7 +19220,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 60063, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Now is the Time! ( 60132, 0x00, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Oblit/Scourge Strike Runic Power Up ( 60170, 0x00, 5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Corruption Triggers Crit -( 60172, 0x00, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0, 0, 0), -- Life Tap Bonus Spirit +( 60172, 0x00, 5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Life Tap Bonus Spirit ( 60176, 0x00, 4, 0x00000020, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Bleed Cost Reduction ( 60221, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Essence of Gossamer ( 60301, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Meteorite Whetstone diff --git a/sql/updates/world/2011_07_04_world_script_texts.sql b/sql/updates/world/2011_07_04_00_world_script_texts.sql similarity index 100% rename from sql/updates/world/2011_07_04_world_script_texts.sql rename to sql/updates/world/2011_07_04_00_world_script_texts.sql diff --git a/sql/updates/world/2011_07_04_01_world_spell_proc_event.sql b/sql/updates/world/2011_07_04_01_world_spell_proc_event.sql new file mode 100644 index 0000000000..9b716e918a --- /dev/null +++ b/sql/updates/world/2011_07_04_01_world_spell_proc_event.sql @@ -0,0 +1 @@ +UPDATE `spell_proc_event` SET `procEx` = 0 WHERE `entry` = 60172; diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index b9cd951d47..c77a888cee 100755 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -1321,7 +1321,7 @@ void Spell::EffectDummy(SpellEffIndex effIndex) if (AuraEffect const* aurEff = m_caster->GetDummyAuraEffect(SPELLFAMILY_WARLOCK, 208, 0)) AddPctN(mana, aurEff->GetAmount()); - m_caster->CastCustomSpell(unitTarget, 31818, &mana, NULL, NULL, true); + m_caster->CastCustomSpell(unitTarget, 31818, &mana, NULL, NULL, false); // Mana Feed int32 manaFeedVal = 0;