mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[8482] New flasks for 3.x added to spell_elixir.
Signoff-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
7837fd93b4
commit
af4c9750e3
5 changed files with 25 additions and 4 deletions
|
|
@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
|
||||||
`version` varchar(120) default NULL,
|
`version` varchar(120) default NULL,
|
||||||
`creature_ai_version` varchar(120) default NULL,
|
`creature_ai_version` varchar(120) default NULL,
|
||||||
`cache_id` int(10) default '0',
|
`cache_id` int(10) default '0',
|
||||||
`required_8462_01_mangos_creature_ai_texts` bit(1) default NULL
|
`required_8482_01_mangos_spell_elixir` bit(1) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -17021,7 +17021,13 @@ INSERT INTO `spell_elixir` VALUES
|
||||||
(42735,0x3),
|
(42735,0x3),
|
||||||
(45373,0x1),
|
(45373,0x1),
|
||||||
(46837,0xB),
|
(46837,0xB),
|
||||||
(46839,0xB);
|
(46839,0xB),
|
||||||
|
(53752,0x3),
|
||||||
|
(53755,0x3),
|
||||||
|
(53758,0x3),
|
||||||
|
(53760,0x3),
|
||||||
|
(54212,0x3),
|
||||||
|
(62380,0x3);
|
||||||
|
|
||||||
|
|
||||||
/*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
|
||||||
|
|
|
||||||
13
sql/updates/8482_01_mangos_spell_elixir.sql
Normal file
13
sql/updates/8482_01_mangos_spell_elixir.sql
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_8462_01_mangos_creature_ai_texts required_8482_01_mangos_spell_elixir bit;
|
||||||
|
|
||||||
|
DELETE FROM `spell_elixir` WHERE `entry` IN
|
||||||
|
(53752,53755,53758,53760,54212,62380);
|
||||||
|
|
||||||
|
/* Flasks added in 3.x */
|
||||||
|
INSERT INTO `spell_elixir` (`entry`, `mask`) VALUES
|
||||||
|
(53752,0x3),
|
||||||
|
(53755,0x3),
|
||||||
|
(53758,0x3),
|
||||||
|
(53760,0x3),
|
||||||
|
(54212,0x3),
|
||||||
|
(62380,0x3);
|
||||||
|
|
@ -100,6 +100,7 @@ pkgdata_DATA = \
|
||||||
8451_01_mangos_spell_proc_event.sql \
|
8451_01_mangos_spell_proc_event.sql \
|
||||||
8462_01_mangos_creature_ai_texts.sql \
|
8462_01_mangos_creature_ai_texts.sql \
|
||||||
8469_01_characters_character_spell.sql \
|
8469_01_characters_character_spell.sql \
|
||||||
|
8482_01_mangos_spell_elixir.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -180,4 +181,5 @@ EXTRA_DIST = \
|
||||||
8451_01_mangos_spell_proc_event.sql \
|
8451_01_mangos_spell_proc_event.sql \
|
||||||
8462_01_mangos_creature_ai_texts.sql \
|
8462_01_mangos_creature_ai_texts.sql \
|
||||||
8469_01_characters_character_spell.sql \
|
8469_01_characters_character_spell.sql \
|
||||||
|
8482_01_mangos_spell_elixir.sql \
|
||||||
README
|
README
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8481"
|
#define REVISION_NR "8482"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#ifndef __REVISION_SQL_H__
|
#ifndef __REVISION_SQL_H__
|
||||||
#define __REVISION_SQL_H__
|
#define __REVISION_SQL_H__
|
||||||
#define REVISION_DB_CHARACTERS "required_8469_01_characters_character_spell"
|
#define REVISION_DB_CHARACTERS "required_8469_01_characters_character_spell"
|
||||||
#define REVISION_DB_MANGOS "required_8462_01_mangos_creature_ai_texts"
|
#define REVISION_DB_MANGOS "required_8482_01_mangos_spell_elixir"
|
||||||
#define REVISION_DB_REALMD "required_8332_01_realmd_realmcharacters"
|
#define REVISION_DB_REALMD "required_8332_01_realmd_realmcharacters"
|
||||||
#endif // __REVISION_SQL_H__
|
#endif // __REVISION_SQL_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue