mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[11595] Classify spell 63729 as battle elixir.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
10c4da4fef
commit
8189bda55f
4 changed files with 9 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_11567_01_mangos_spell_proc_event` bit(1) default NULL
|
`required_11595_09_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';
|
||||||
|
|
||||||
--
|
--
|
||||||
|
|
@ -16830,6 +16830,7 @@ INSERT INTO `spell_elixir` VALUES
|
||||||
(60346,0x1),
|
(60346,0x1),
|
||||||
(60347,0x2),
|
(60347,0x2),
|
||||||
(62380,0x3),
|
(62380,0x3),
|
||||||
|
(63729,0x1),
|
||||||
(67016,0x3),
|
(67016,0x3),
|
||||||
(67017,0x3),
|
(67017,0x3),
|
||||||
(67018,0x3),
|
(67018,0x3),
|
||||||
|
|
|
||||||
5
sql/updates/11595_09_mangos_spell_elixir.sql
Normal file
5
sql/updates/11595_09_mangos_spell_elixir.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
ALTER TABLE db_version CHANGE COLUMN required_11567_01_mangos_spell_proc_event required_11595_09_mangos_spell_elixir bit;
|
||||||
|
|
||||||
|
DELETE FROM spell_elixir WHERE entry='63729';
|
||||||
|
INSERT INTO spell_elixir VALUES
|
||||||
|
(63729,0x1);
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11594"
|
#define REVISION_NR "11595"
|
||||||
#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_11436_01_characters_character_queststatus"
|
#define REVISION_DB_CHARACTERS "required_11436_01_characters_character_queststatus"
|
||||||
#define REVISION_DB_MANGOS "required_11567_01_mangos_spell_proc_event"
|
#define REVISION_DB_MANGOS "required_11595_09_mangos_spell_elixir"
|
||||||
#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