mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[10409] Restore work of 47230 and ranks
This commit is contained in:
parent
7f9208426a
commit
a0f5c969ed
6 changed files with 16 additions and 3 deletions
|
|
@ -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_10400_01_mangos_mangos_string` bit(1) default NULL
|
||||
`required_10409_02_mangos_spell_proc_event` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -16297,6 +16297,9 @@ INSERT INTO spell_chain VALUES
|
|||
(28610,11740,6229,4,0),
|
||||
(47890,28610,6229,5,0),
|
||||
(47891,47890,6229,6,0),
|
||||
/*Fel Synergy*/
|
||||
(47230,0,47230,1,0),
|
||||
(47231,47230,47230,2,0),
|
||||
/*------------------
|
||||
--(355)Affliction
|
||||
------------------*/
|
||||
|
|
@ -18266,6 +18269,7 @@ INSERT INTO `spell_proc_event` VALUES
|
|||
(47263, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
|
||||
(47264, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
|
||||
(47265, 0x20, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
|
||||
(47230, 0x7F, 5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
||||
(47509, 0x7F, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(47516, 0x00, 6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0),
|
||||
(47569, 0x00, 6, 0x00004000, 0x00004000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 0),
|
||||
|
|
|
|||
3
sql/updates/10409_01_mangos_spell_chain.sql
Normal file
3
sql/updates/10409_01_mangos_spell_chain.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_10400_01_mangos_mangos_string required_10409_01_mangos_spell_chain bit;
|
||||
|
||||
INSERT INTO spell_chain VALUES (47230, 0, 47230, 1, 0), (47231, 47230, 47230, 2, 0);
|
||||
2
sql/updates/10409_02_mangos_spell_proc_event.sql
Normal file
2
sql/updates/10409_02_mangos_spell_proc_event.sql
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_10409_01_mangos_spell_chain required_10409_02_mangos_spell_proc_event bit;
|
||||
|
||||
|
|
@ -84,6 +84,8 @@ pkgdata_DATA = \
|
|||
10365_01_mangos_creature_ai_scripts.sql \
|
||||
10381_01_mangos_creature_model_race.sql \
|
||||
10400_01_mangos_mangos_string.sql \
|
||||
10409_01_mangos_spell_chain.sql \
|
||||
10409_02_mangos_spell_proc_event.sql \
|
||||
README
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
|
|
@ -148,4 +150,6 @@ EXTRA_DIST = \
|
|||
10365_01_mangos_creature_ai_scripts.sql \
|
||||
10381_01_mangos_creature_model_race.sql \
|
||||
10400_01_mangos_mangos_string.sql \
|
||||
10409_01_mangos_spell_chain.sql \
|
||||
10409_02_mangos_spell_proc_event.sql \
|
||||
README
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "10408"
|
||||
#define REVISION_NR "10409"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifndef __REVISION_SQL_H__
|
||||
#define __REVISION_SQL_H__
|
||||
#define REVISION_DB_CHARACTERS "required_10332_02_characters_pet_aura"
|
||||
#define REVISION_DB_MANGOS "required_10400_01_mangos_mangos_string"
|
||||
#define REVISION_DB_MANGOS "required_10409_02_mangos_spell_proc_event"
|
||||
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
|
||||
#endif // __REVISION_SQL_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue