mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[6941] Data for spell_learn_spell for new class specific enchanting ability.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
45ac0c5036
commit
2c1c58a44c
4 changed files with 13 additions and 3 deletions
|
|
@ -22,7 +22,7 @@
|
||||||
DROP TABLE IF EXISTS `db_version`;
|
DROP TABLE IF EXISTS `db_version`;
|
||||||
CREATE TABLE `db_version` (
|
CREATE TABLE `db_version` (
|
||||||
`version` varchar(120) default NULL,
|
`version` varchar(120) default NULL,
|
||||||
`required_6940_01_mangos_spell_learn_spell` bit(1) default NULL
|
`required_6941_01_mangos_spell_learn_spell` 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';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -15856,7 +15856,9 @@ INSERT INTO `spell_learn_spell` VALUES
|
||||||
(33873,47180),
|
(33873,47180),
|
||||||
(33943,34090),
|
(33943,34090),
|
||||||
(34767,33391),
|
(34767,33391),
|
||||||
(34769,33388);
|
(34769,33388),
|
||||||
|
(53428,53341),
|
||||||
|
(53428,53343);
|
||||||
|
|
||||||
/*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
|
||||||
6
sql/updates/6941_01_mangos_spell_learn_spell.sql
Normal file
6
sql/updates/6941_01_mangos_spell_learn_spell.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_6940_01_mangos_spell_learn_spell required_6941_01_mangos_spell_learn_spell bit;
|
||||||
|
|
||||||
|
DELETE FROM spell_learn_spell WHERE entry = 53428;
|
||||||
|
INSERT INTO spell_learn_spell VALUES
|
||||||
|
(53428,53341),
|
||||||
|
(53428,53343);
|
||||||
|
|
@ -98,6 +98,7 @@ pkgdata_DATA = \
|
||||||
6936_01_mangos_spell_chain.sql \
|
6936_01_mangos_spell_chain.sql \
|
||||||
6939_01_mangos_quest_template.sql \
|
6939_01_mangos_quest_template.sql \
|
||||||
6940_01_mangos_spell_learn_spell.sql \
|
6940_01_mangos_spell_learn_spell.sql \
|
||||||
|
6941_01_mangos_spell_learn_spell.sql \
|
||||||
README
|
README
|
||||||
|
|
||||||
## Additional files to include when running 'make dist'
|
## Additional files to include when running 'make dist'
|
||||||
|
|
@ -176,4 +177,5 @@ EXTRA_DIST = \
|
||||||
6936_01_mangos_spell_chain.sql \
|
6936_01_mangos_spell_chain.sql \
|
||||||
6939_01_mangos_quest_template.sql \
|
6939_01_mangos_quest_template.sql \
|
||||||
6940_01_mangos_spell_learn_spell.sql \
|
6940_01_mangos_spell_learn_spell.sql \
|
||||||
|
6941_01_mangos_spell_learn_spell.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 "6940"
|
#define REVISION_NR "6941"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue