mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[11953] Add missing nightelf player-create spell 21009 for druid and DK
Thanks to crackm for providing data Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
parent
a66a40dc99
commit
1ab35e53d9
4 changed files with 11 additions and 3 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_11947_01_mangos_dbscripts` bit(1) default NULL
|
`required_11953_01_mangos_playercreateinfo_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';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -12134,6 +12134,7 @@ INSERT INTO `playercreateinfo_spell` VALUES
|
||||||
(4,6,20582,'Quickness'),
|
(4,6,20582,'Quickness'),
|
||||||
(4,6,20583,'Nature Resistance'),
|
(4,6,20583,'Nature Resistance'),
|
||||||
(4,6,20585,'Wisp Spirit'),
|
(4,6,20585,'Wisp Spirit'),
|
||||||
|
(4,6,21009,'Elusiveness'),
|
||||||
(4,6,21651,'Opening'),
|
(4,6,21651,'Opening'),
|
||||||
(4,6,21652,'Closing'),
|
(4,6,21652,'Closing'),
|
||||||
(4,6,22027,'Remove Insignia'),
|
(4,6,22027,'Remove Insignia'),
|
||||||
|
|
@ -12185,6 +12186,7 @@ INSERT INTO `playercreateinfo_spell` VALUES
|
||||||
(4,11,20582,'Quickness'),
|
(4,11,20582,'Quickness'),
|
||||||
(4,11,20583,'Nature Resistance'),
|
(4,11,20583,'Nature Resistance'),
|
||||||
(4,11,20585,'Wisp Spirit'),
|
(4,11,20585,'Wisp Spirit'),
|
||||||
|
(4,11,21009,'Elusiveness'),
|
||||||
(4,11,21651,'Opening'),
|
(4,11,21651,'Opening'),
|
||||||
(4,11,21652,'Closing'),
|
(4,11,21652,'Closing'),
|
||||||
(4,11,22027,'Remove Insignia'),
|
(4,11,22027,'Remove Insignia'),
|
||||||
|
|
|
||||||
6
sql/updates/11953_01_mangos_playercreateinfo_spell.sql
Normal file
6
sql/updates/11953_01_mangos_playercreateinfo_spell.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_11947_01_mangos_dbscripts required_11953_01_mangos_playercreateinfo_spell bit;
|
||||||
|
|
||||||
|
DELETE FROM playercreateinfo_spell WHERE Spell=21009;
|
||||||
|
INSERT INTO playercreateinfo_spell (race,class,Spell,Note) VALUES
|
||||||
|
(4,6,21009,'Elusiveness'),
|
||||||
|
(4,11,21009,'Elusiveness');
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11952"
|
#define REVISION_NR "11953"
|
||||||
#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_11785_02_characters_instance"
|
#define REVISION_DB_CHARACTERS "required_11785_02_characters_instance"
|
||||||
#define REVISION_DB_MANGOS "required_11947_01_mangos_dbscripts"
|
#define REVISION_DB_MANGOS "required_11953_01_mangos_playercreateinfo_spell"
|
||||||
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
|
#define REVISION_DB_REALMD "required_10008_01_realmd_realmd_db_version"
|
||||||
#endif // __REVISION_SQL_H__
|
#endif // __REVISION_SQL_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue