diff options
-rw-r--r-- | sql/base/world_database.sql | 1 | ||||
-rw-r--r-- | sql/updates/world/2011_05_12_11_world_spell_proc_event.sql | 1 | ||||
-rwxr-xr-x | src/server/game/Entities/Unit/Unit.cpp | 7 |
3 files changed, 1 insertions, 8 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index ce95b3bd050..671c6c3f44c 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19165,7 +19165,6 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 54808, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Sonic Shield ( 54838, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Purified Spirit ( 54841, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 3), -- Thunder Capacitor -( 54936, 0x00, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Flash of Light ( 54937, 0x00, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Holy Light ( 54939, 0x00, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Glyph of Divinity ( 55198, 0x00, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00004000, 0x00000002, 0, 0, 0), -- Tidal Force diff --git a/sql/updates/world/2011_05_12_11_world_spell_proc_event.sql b/sql/updates/world/2011_05_12_11_world_spell_proc_event.sql new file mode 100644 index 00000000000..f2b6ce5fd47 --- /dev/null +++ b/sql/updates/world/2011_05_12_11_world_spell_proc_event.sql @@ -0,0 +1 @@ +DELETE FROM `spell_proc_event` WHERE `entry` = 54936; diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index 4c62895b3da..e0cff6723ae 100755 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -6832,13 +6832,6 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger } return true; } - // Glyph of Flash of Light - case 54936: - { - triggered_spell_id = 54957; - basepoints0 = CalculatePctN(int32(damage), triggerAmount); - break; - } // Glyph of Holy Light case 54937: { |