mirror of
https://github.com/mangosfour/server.git
synced 2025-12-18 10:37:01 +00:00
[7536] Spell chain requirement for some epic mounts.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
294e2c69a9
commit
53af93111b
4 changed files with 20 additions and 2 deletions
|
|
@ -22,7 +22,7 @@
|
|||
DROP TABLE IF EXISTS `db_version`;
|
||||
CREATE TABLE `db_version` (
|
||||
`version` varchar(120) default NULL,
|
||||
`required_7503_01_mangos_command` bit(1) default NULL
|
||||
`required_7536_01_mangos_spell_chain` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -16186,6 +16186,13 @@ INSERT INTO spell_chain VALUES
|
|||
(45361,45360,45357,5,0),
|
||||
(45363,45361,45357,6,0),
|
||||
/*------------------
|
||||
-- (777) Mounts
|
||||
------------------*/
|
||||
(13819,0,13819,1,0),
|
||||
(23214,13819,13819,2,33391),
|
||||
(34769,0,34769,1,0),
|
||||
(34767,34769,34769,2,33391),
|
||||
/*------------------
|
||||
--(780)Pet-ExoticChimaera
|
||||
------------------*/
|
||||
/*FroststormBreath*/
|
||||
|
|
|
|||
9
sql/updates/7536_01_mangos_spell_chain.sql
Normal file
9
sql/updates/7536_01_mangos_spell_chain.sql
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
ALTER TABLE db_version CHANGE COLUMN required_7503_01_mangos_command required_7536_01_mangos_spell_chain bit;
|
||||
|
||||
DELETE FROM spell_chain WHERE spell_id in (13819,23214,34769,34767);
|
||||
|
||||
INSERT INTO `spell_chain` VALUES
|
||||
(13819,0, 13819,1,0 ),
|
||||
(23214,13819,13819,2,33391),
|
||||
(34769,0, 34769,1,0 ),
|
||||
(34767,34769,34769,2,33391);
|
||||
|
|
@ -201,6 +201,7 @@ pkgdata_DATA = \
|
|||
7493_01_mangos_command.sql \
|
||||
7495_01_mangos_mangos_string.sql \
|
||||
7503_01_mangos_command.sql \
|
||||
7536_01_mangos_spell_chain.sql \
|
||||
README
|
||||
|
||||
## Additional files to include when running 'make dist'
|
||||
|
|
@ -382,4 +383,5 @@ EXTRA_DIST = \
|
|||
7493_01_mangos_command.sql \
|
||||
7495_01_mangos_mangos_string.sql \
|
||||
7503_01_mangos_command.sql \
|
||||
7536_01_mangos_spell_chain.sql \
|
||||
README
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "7535"
|
||||
#define REVISION_NR "7536"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue