diff options
-rw-r--r-- | sql/FULL/world_spell_full.sql | 3 | ||||
-rw-r--r-- | sql/updates/4697_world_spell_proc_event.sql | 1 | ||||
-rw-r--r-- | src/game/Unit.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sql/FULL/world_spell_full.sql b/sql/FULL/world_spell_full.sql index e02cb7e8fad..936755f8fe2 100644 --- a/sql/FULL/world_spell_full.sql +++ b/sql/FULL/world_spell_full.sql @@ -1496,8 +1496,7 @@ INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `Spell ( 48545, 0x00, 7, 0x00000010, 0x04000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Revitalize ( 53234, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 1) ( 53237, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 2) -( 53238, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0), -- Piercing Shots (Rank 3) -( 50453, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000004, 0x00000000, 0, 100, 0); -- Health Leech (Passive) +( 53238, 0x00, 9, 0x00020000, 0x00000001, 0x00000001, 0x00000000, 0x00000002, 0, 0, 0); -- Piercing Shots (Rank 3) -- -------- -- ENCHANT PROC diff --git a/sql/updates/4697_world_spell_proc_event.sql b/sql/updates/4697_world_spell_proc_event.sql new file mode 100644 index 00000000000..d5945488b36 --- /dev/null +++ b/sql/updates/4697_world_spell_proc_event.sql @@ -0,0 +1 @@ +DELETE FROM `spell_proc_event` WHERE `entry` = 50453; diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 692185910db..2e3ce92d00c 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -4928,7 +4928,7 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger { if (Unit *owner = this->GetOwner()) { - basepoints0 = int32(damage); + basepoints0 = int32(damage*1.50); target = owner; triggered_spell_id = 50454; break; |