From 467e47df7c4b2a2a2e8572383b8f4d0896fbec90 Mon Sep 17 00:00:00 2001 From: Astellar Date: Wed, 22 Jul 2009 08:42:46 +0400 Subject: [PATCH] [8226] Fixed spell proc data for spell 63730 and ranks. Signed-off-by: VladimirMangos --- sql/mangos.sql | 5 ++++- sql/updates/9999_01_mangos_spell_proc_event.sql | 5 +++++ src/shared/revision_nr.h | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 sql/updates/9999_01_mangos_spell_proc_event.sql diff --git a/sql/mangos.sql b/sql/mangos.sql index 5d622f20d..5def7cdd9 100644 --- a/sql/mangos.sql +++ b/sql/mangos.sql @@ -17676,7 +17676,10 @@ INSERT INTO `spell_proc_event` VALUES (63108, 0x00000000, 5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), (63156, 0x00000000, 0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), (63158, 0x00000000, 0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), -(63245, 0x00000000, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0); +(63245, 0x00000000, 5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0), +(63730, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), +(63733, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), +(63737, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/9999_01_mangos_spell_proc_event.sql b/sql/updates/9999_01_mangos_spell_proc_event.sql new file mode 100644 index 000000000..d8dd9fb46 --- /dev/null +++ b/sql/updates/9999_01_mangos_spell_proc_event.sql @@ -0,0 +1,5 @@ +DELETE FROM `spell_proc_event` WHERE entry IN(63730,63733,63737); +INSERT INTO `spell_proc_event` VALUES +(63730, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), +(63733, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0), +(63737, 0x00000000, 6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 12cd8f72c..5664667c0 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "8225" + #define REVISION_NR "8226" #endif // __REVISION_NR_H__