diff --git a/sql/mangos.sql b/sql/mangos.sql
index 0116c2740..2c2656570 100644
--- a/sql/mangos.sql
+++ b/sql/mangos.sql
@@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
`version` varchar(120) default NULL,
`creature_ai_version` varchar(120) default NULL,
`cache_id` int(10) default '0',
- `required_10537_01_mangos_command` bit(1) default NULL
+ `required_10551_01_mangos_spell_proc_event` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--
@@ -17123,7 +17123,7 @@ INSERT INTO `spell_proc_event` VALUES
(49222, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 3),
(49622, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
(50781, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 6),
-(50880, 0x10, 15, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0x00000800, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
+(50880, 0x10, 15, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0x00000800, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000, 0),
(51123, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
(51346, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
(51349, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
diff --git a/sql/updates/10551_01_mangos_spell_proc_event.sql b/sql/updates/10551_01_mangos_spell_proc_event.sql
new file mode 100644
index 000000000..af2f42ebd
--- /dev/null
+++ b/sql/updates/10551_01_mangos_spell_proc_event.sql
@@ -0,0 +1,4 @@
+ALTER TABLE db_version CHANGE COLUMN required_10537_01_mangos_command required_10551_01_mangos_spell_proc_event bit;
+
+DELETE FROM spell_proc_event WHERE entry = 50880;
+INSERT INTO spell_proc_event VALUES (50880, 0x10, 15, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0x00000800, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0x00000000, 0.000000, 0.000000, 0);
\ No newline at end of file
diff --git a/sql/updates/Makefile.am b/sql/updates/Makefile.am
index 3e70d0f43..87fcaaded 100644
--- a/sql/updates/Makefile.am
+++ b/sql/updates/Makefile.am
@@ -102,6 +102,7 @@ pkgdata_DATA = \
10503_03_mangos_creature_respawn.sql \
10503_04_mangos_gameobject_respawn.sql \
10537_01_mangos_command.sql \
+ 10551_01_mangos_spell_proc_event.sql \
README
## Additional files to include when running 'make dist'
@@ -184,4 +185,5 @@ EXTRA_DIST = \
10503_03_mangos_creature_respawn.sql \
10503_04_mangos_gameobject_respawn.sql \
10537_01_mangos_command.sql \
+ 10551_01_mangos_spell_proc_event.sql \
README
diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h
index 8c724fe30..bc8662393 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 "10550"
+ #define REVISION_NR "10551"
#endif // __REVISION_NR_H__
diff --git a/src/shared/revision_sql.h b/src/shared/revision_sql.h
index 1dcfc6fbb..baa81a6dc 100644
--- a/src/shared/revision_sql.h
+++ b/src/shared/revision_sql.h
@@ -1,6 +1,6 @@
#ifndef __REVISION_SQL_H__
#define __REVISION_SQL_H__
#define REVISION_DB_CHARACTERS "required_10503_02_characters_gameobject_respawn"
- #define REVISION_DB_MANGOS "required_10537_01_mangos_command"
+ #define REVISION_DB_MANGOS "required_10551_01_mangos_spell_proc_event"
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
#endif // __REVISION_SQL_H__
diff --git a/win/VC90/game.vcproj b/win/VC90/game.vcproj
index 1d491a296..ae6b7b76b 100644
--- a/win/VC90/game.vcproj
+++ b/win/VC90/game.vcproj
@@ -1,7 +1,7 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -986,6 +982,10 @@
RelativePath="..\..\src\game\Transports.h"
>
+
+
@@ -1640,7 +1640,7 @@
/>